-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathLocalizable.strings
More file actions
3206 lines (2142 loc) · 236 KB
/
Localizable.strings
File metadata and controls
3206 lines (2142 loc) · 236 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
/* No comment provided by engineer. */
" " = " ";
/* CrowdNode */
" Privacy Policy " = "Patakaran sa Pagkapribado";
/* CrowdNode */
" Terms of Use " = "Mga Tuntunin ng Paggamit";
/* No comment provided by engineer. */
"%@ has accepted your contact request" = "%@ ay tinanggap ang iyong kahilingan sa pakikipag-ugnay";
/* Username has sent you a contact request */
"%@ has sent you a contact request" = "%@ ay nagpadala sa iyo ng isang kahilingan sa pakikipag-ugnay";
/* No comment provided by engineer. */
"%@ is not allowed to access Face ID. Allow Face ID access in Settings" = "%@ ay hindi pinapayagang i-access ang Face ID. Payagan ang pag-access ng Face ID sa Mga Setting";
/* No comment provided by engineer. */
"%@ is not allowed to access the camera" = "%@ ay hindi pinahihintulutang i-access ang kamera";
/* No comment provided by engineer. */
"%@ is not allowed to access Touch ID. Allow Touch ID access in Settings" = "%@ ay hindi pinapayagang ma-access ang Touch ID. Payagan ang pag-access ng Touch ID sa Mga Setting";
/* Credits */
"%@ ~ %lu contacts / %lu profile updates" = "%1$@ ~ %2$lu mga contact / %3$lu mga update sa profile";
/* Voting - multiple keys warning */
"%d votes will be cast as you have multiple voting keys stored in the wallet" = "ipapalabas ang mga %d boto dahil marami kang voting key na nakaimbak sa wallet";
/* Voting */
"%ld duplicates" = "%ld duplicate";
/* Voting */
"%ld requests" = "%ld mga kahilingan";
/* 10/20 Characters */
"%ld/%ld Characters" = "%1$ld/%2$ld Mga Karakter";
/* No comment provided by engineer. */
"(1/3) Processing Payment" = "(1/3) Pagproseso ng Bayad";
/* No comment provided by engineer. */
"(1/3) Unable to process payment" = "(1/3) Hindi maproseso ang pagbabayad";
/* No comment provided by engineer. */
"(2/3) Creating Dash Identity" = "(2/3) Lumilikha ng Pagkakakilanlan sa Dash";
/* No comment provided by engineer. */
"(2/3) Unable to create Dash Identity" = "(2/3) Hindi makalikha ng Pagkakakilanlan sa Dash";
/* No comment provided by engineer. */
"(3/3) Can't register username" = "(3/3) Hindi makapagrehistro ng username";
/* No comment provided by engineer. */
"(3/3) Registering Username" = "(3/3) Pagrerehistro ng Username";
/* No comment provided by engineer. */
"1 hour" = "1 oras";
/* Explore Dash: Filters */
"1 mile" = "1 milya";
/* Shorten version of minute */
"1 min" = "1 minuto";
/* Explore Dash: Filters */
"2 km" = "2 km";
/* Explore Dash: Filters */
"20 miles" = "20 milya";
/* No comment provided by engineer. */
"24 hours" = "24 na oras";
/* Explore Dash: Filters */
"32 km" = "32 km";
/* Explore Dash: Filters */
"5 miles" = "5 milya";
/* Shorten version of minutes */
"5 min" = "5 minuto";
/* Explore Dash: Filters */
"50 miles" = "50 milya";
/* Explore Dash: Filters */
"8 km" = "8 km";
/* Explore Dash: Filters */
"80 km" = "80 km";
/* No comment provided by engineer. */
"\"%@\" is not a recovery phrase word" = "\"%@\" ay hindi isang recovery phrase na salita";
/* No comment provided by engineer. */
"\"%@\" is not a recovery phrase word. Would you like to try to recover the correct word that should be in its place?" = "\"%@\" ay hindi isang recovery phrase. Nais mo bang subukang mabawi ang tamang salita na dapat ay nasa lugar nito?";
/* No comment provided by engineer. */
"\ntry again in %@" = "\nulitin ulit sa %@";
/* No comment provided by engineer. */
"A device passcode is needed to safeguard your wallet. Go to settings and turn passcode on to continue." = "Kailangan ng device passcode para pangalagaan ang iyong pitaka. Pumunta sa settings at i-on ang passcode para magpatuloy,";
/* CrowdNode */
"A Masternode needs 1000 Dash as collateral and each Masternode is currently rewarded approximately %@ per year." = "Ang isang Masternode ay nangangailangan ng 1000 Dash bilang collateral at ang bawat Masternode ay kasalukuyang ginagantimpalaan ng humigit-kumulang %@ bawat taon.";
/* No comment provided by engineer. */
"About" = "Tungkol sa";
/* No comment provided by engineer. */
"About me" = "Tungkol sa Akin";
/* No comment provided by engineer. */
"Accept" = "Tanggapin";
/* Explore */
"Accept Dash directly" = "Direktang tanggapin ang Dash";
/* DashSpend */
"Accept terms and\nconditions" = "Tanggapin ang mga tuntunin at\nkundisyon";
/* CrowdNode */
"Accept Terms Of Use" = "Tanggapin ang Mga Tuntunin ng paggamit";
/* CrowdNode */
"Accepting terms of use…" = "Tumatanggap ng mga tuntunin sa paggamit…";
/* CrowdNode */
"Account Recovery" = "Pagbawi ng Account";
/* No comment provided by engineer. */
"Activity" = "Aktibidad";
/* No comment provided by engineer. */
"Add" = "Dagdagan";
/* Add <username> as your contact... */
"Add %@ as your contact to Pay Directly to Username and Retain Mutual Transaction History" = "Idagdag ang %@bilang iyong contact sa Pagbayad ng Direkta sa Username at Panatilihin ang Kasaysayan ng Kapwang Transaksyon";
/* No comment provided by engineer. */
"Add a New Contact" = "Magdagdag ng Bagong Contact";
/* No comment provided by engineer. */
"Add your Friends & Family" = "Idagdag ang iyong Mga Kaibigan at Pamilya";
/* Usernames */
"Add your friends & family" = "Idagdag ang iyong Mga Kaibigan at Pamilya";
/* No comment provided by engineer. */
"Address" = "Address";
/* CoinJoin */
"Advanced" = "Advanced";
/* CoinJoin */
"Advanced privacy level requires a reliable internet connection" = "Ang advanced na antas ng privacy ay nangangailangan ng maaasahang koneksyon sa internet";
/* No comment provided by engineer. */
"Advanced Security" = "Masusing seguridad";
/* Coinbase */
"Advanced users who have a very high level of technical expertise can determine your transaction history" = "Maaaring matukoy ng mga advanced na user na may napakataas na antas ng teknikal na kadalubhasaan ang iyong history ng transaksyon";
/* Usernames */
"After the voting ends we will notify you about its results" = "Pagkatapos ng pagboto ay aabisuhan ka namin tungkol sa mga resulta nito";
/* No comment provided by engineer. */
"Agree" = "Sumang-ayon";
/* TimeSkew */
"ahead" = "sa unahan";
/* No comment provided by engineer. */
"All" = "Lahat";
/* No comment provided by engineer. */
"All payments will be considered as an Expense and all incoming transactions will be Income. The owner of this wallet is responsible for making any cost basis adjustments in their chosen tax reporting system." = "Ang lahat ng mga pagbabayad ay ituturing bilang isang Gastos at lahat ng mga papasok na transaksyon ay magiging Kita. Ang may-ari ng wallet na ito ay may pananagutan sa paggawa ng anumang mga pagsasaayos sa batayan ng gastos sa kanilang napiling sistema ng pag-uulat ng buwis.";
/* CrowdNode */
"All transfers to and from CrowdNode from this device will be performed with the below Dash address from this device." = "Ang lahat ng paglilipat papunta at mula sa CrowdNode mula sa device na ito ay isasagawa gamit ang ibaba ng Dash address mula sa device na ito.";
/* ZenLedger */
"Allow" = "Payagan";
/* No comment provided by engineer. */
"Allow camera access in Settings" = "Payagang i-access ang camera sa Settings";
/* ZenLedger */
"Allow sending all transactions from Dash Wallet to Zenledger?" = "Payagan ang pagpapadala ng lahat ng mga transaksyon mula sa Dash Wallet sa Zenledger?";
/* Coinbase/Buy Dash */
"Amount in Dash" = "Halaga sa Dash";
/* No comment provided by engineer. */
"Amount received" = "Halagang natanggap";
/* No comment provided by engineer. */
"Amount Sent" = "Halagang ipinadala";
/* No comment provided by engineer. */
"An error occurred" = "May naganap na error";
/* No comment provided by engineer. */
"An intuitive and familiar experience across all your devices" = "Ang sapantaha at pamilyar na karanasan sa lahat ng iyong aparato";
/* CTXSpend error */
"An unknown error occurred. Please try again later." = "May naganap na hindi kilalang error. Pakisubukang muli mamaya.";
/* CrowdNode */
"and" = "at";
/* CoinJoin */
"Any funds that have been mixed will be combined with your un mixed funds" = "Ang anumang mga pondo na pinaghalo ay isasama sa iyong mga hindi pinaghalong pondo";
/* Usernames */
"Any username that has a number 2-9, is more than 20 characters or that has a hyphen will be automatically approved" = "Awtomatikong maaaprubahan ang anumang username na mayroong numero 2-9, higit sa 20 character o may gitling.";
/* Coinbase/Payment Methods */
"Apple Pay" = "Apple Pay";
/* No comment provided by engineer. */
"Application %@ is requesting a payment to" = "Ang application %@ ay humihiling ng bayad sa";
/* No comment provided by engineer. */
"Application %@ is requesting an address so it can pay you. Would you like to authorize this?" = "Ang application %@ay humihingi ng pahintulot para ikaw ay mabayaran. Gusto mo bang pahintulutan ito?";
/* No comment provided by engineer. */
"Application %@ would like to receive your Master Public Key. This can be used to keep track of your wallet, this can not be used to move your Dash." = "Ang application %@ ay gustong makuha ang iyong Master Public Key. Ito ay maaaring gamitin upang masubaybayan ang iyong pitaka, ito ay hindi maaaring gamitin sa paglipat ng iyong Dash.";
/* No comment provided by engineer. */
"Apply" = "Mag-apply";
/* Coinbase/Buy Dash/Cancel Order */
"Are you sure you want to cancel this order?" = "Sigurado ka bang gusto mong kanselahin ang order na ito?";
/* Coinbase/Buy Dash/Cancel Order */
"Are you sure you want to cancel this transaction?" = "Sigurado ka bang gusto mong kanselahin ang transaksyong ito?";
/* CoinJoin */
"Are you sure you want to change the privacy level?" = "Sigurado ka bang gusto mong baguhin ang antas ng privacy?";
/* CoinJoin */
"Are you sure you want to stop mixing?" = "Sigurado ka bang gusto mong ihinto ang paghahalo?";
/* No comment provided by engineer. */
"Are you sure?" = "Sigurado ka ba?";
/* Voting */
"As a masternode owner you can vote to approve requested usernames before users will be able to create it.\nYou can block the creation of the usernames that you feel inappropriate." = "Bilang may-ari ng masternode maaari kang bumoto upang aprubahan ang mga hiniling na username bago ito magawa ng mga user.\nMaaari mong harangan ang paglikha ng mga username na sa tingin mo ay hindi naaangkop.";
/* CrowdNode */
"As most people do not have exactly 1000 Dash at hand, Crowdnode has made a service where, by pooling deposits from members, they can achieve the benefits of owning a Masternode." = "Dahil karamihan sa mga tao ay walang eksaktong 1000 Dash, gumawa ang Crowdnode ng isang serbisyo kung saan, sa pamamagitan ng pagsasama-sama ng mga deposito mula sa mga miyembro, makakamit nila ang mga benepisyo ng pagmamay-ari ng Masternode.";
/* DashSpend */
"at" = "sa";
/* No comment provided by engineer. */
"ATM search works better with Location Services turned on." = "Mas gumagana ang paghahanap sa ATM kapag naka-on ang Mga Serbisyo sa Lokasyon.";
/* No comment provided by engineer. */
"ATMs" = "Mga ATM";
/* No comment provided by engineer. */
"Authentication is unvailable" = "Hindi magagamit ang pagpapatunay";
/* Location Service Status */
"Authorized" = "Awtorisado";
/* No comment provided by engineer. */
"Auto Logout" = "Awtimatikong Pag-log out";
/* No comment provided by engineer. */
"Autohide Balance" = "Awtimatikong Pagtago ng Balanse";
/* Translate it as short as possible! (24 symbols max) */
"Backup" = "back-up";
/* No comment provided by engineer. */
"Backup Passphrase" = "I-backup ang passphrase";
/* A noun. Used as a title. */
"Backup Wallet" = "Backup na Pitaka";
/* No comment provided by engineer. */
"Backup your passphrase to create a CrowdNode account" = "I-backup ang iyong passphrase para gumawa ng CrowdNode account";
/* Back up wallet */
"Backup your recovery phrase" = "I-backup ang iyong recovery phrase";
/* No comment provided by engineer. */
"Bad recovery phrase" = "Maling recovery phrase";
/* Send Screen: to address */
"Balance" = "Balanse";
/* CrowdNode */
"Balance On CrowdNode" = "Balanse sa CrowdNode";
/* CrowdNode */
"Balance: " = "Balanse:";
/* Coinbase/Payment Methods */
"Bank Account" = "Bank Account";
/* Coinbase/Payment Methods */
"Bank Wire" = "Bank Wire";
/* No comment provided by engineer. */
"Barcode placeholder" = "Placeholder ng barcode";
/* CrowdNode */
"Become part of a Dash Masternode with CrowdNode" = "Maging bahagi ng isang Dash Masternode na may CrowdNode";
/* TimeSkew */
"behind" = "sa huli";
/* Validation rule: Between 3 and 24 characters */
"Between %ld and %ld characters" = "Sa pagitan ng %1$ld at %2$ld karakter";
/* Usernames */
"Between 3 and 23 characters" = "Sa pagitan ng 3 at 23 na mga karakter";
/* Coinbase Entry Point */
"Between Dash Wallet and Coinbase" = "Sa pagitan ng Dash Wallet at Coinbase";
/* Dash Service Overview */
"Between Dash Wallet and your Coinbase account" = "Sa pagitan ng Dash Wallet at ng iyong Coinbase account";
/* No comment provided by engineer. */
"Biometrics Access Required" = "Kinakailangan maaccess ang Biometrics ";
/* Voting */
"Block" = "Block";
/* No comment provided by engineer. */
"block #%d of %d" = "block #%1$d ng %2$d";
/* No comment provided by engineer. */
"Block #%d of %d" = "Block #%1$d ng %2$d";
/* Voting */
"Blocked '%@' username" = "Naka-block '%@' na username";
/* Buy
buy */
"Buy" = "Bumili";
/* Translate it as short as possible! (24 symbols max) */
"Buy & Sell" = "Bili At Benta";
/* No comment provided by engineer. */
"Buy & Sell Dash" = "Bumili at magbenta ng Dash";
/* Buy a Gift Card */
"Buy a Gift Card" = "Bumili ng Gift Card";
/* Dash Service Overview */
"Buy and convert Dash with another crypto" = "Bumili at i-convert ang Dash gamit ang isa pang crypto";
/* No comment provided by engineer. */
"Buy credits" = "Bumili ng Mga Kredito";
/* No comment provided by engineer. */
"Buy Dash" = "Bumili ng Dash";
/* Dash Service Overview */
"Buy Dash with fiat" = "Bumili ng Dash gamit ang fiat";
/* Dash Portal */
"Buy Dash · No account needed" = "Bumili ng Dash · Walang kinakailangang account";
/* DashSpend */
"Buy gift card" = "Bumili ng gift card";
/* No comment provided by engineer. */
"Buy gift cards with your Dash" = "Bumili ng mga gift card gamit ang iyong Dash";
/* No comment provided by engineer. */
"Buy gift cards with your Dash for the exact amount of your purchase." = "Bumili ng mga gift card gamit ang iyong Dash para sa eksaktong halaga ng iyong binili.";
/* Buy/Sell */
"Buy/Sell" = "Bili/Benta";
/* Voting */
"By tapping the \"Vote for All\" button, you will automatically vote for all of the filtered usernames (%ld) that were submitted first" = "Sa pamamagitan ng pag-tap sa \"Vote for All\" na button, awtomatiko kang bumoto para sa lahat ng na-filter na username (%ld) na unang isinumite";
/* No comment provided by engineer. */
"By wiping this device you will no longer have access to funds on this device. This should only be done if you no longer have access to your passphrase and have also forgotten your PIN code." = "Sa pag-wipe nitong device hindi mo na maaaring ma-access ang iyong pondo sa device na ito. Ito ay maaari mo lamang gawin kung wala ka na talagang access sa iyong passphrase at nakalimutan mo na rin ang iyong PIN code.";
/* No comment provided by engineer. */
"Cancel" = "I-cancel";
/* Voting */
"Cancel Approval" = "Kanselahin ang Pag-apruba";
/* No comment provided by engineer. */
"Cancel Request" = "Kanselahin ang Kahilingan";
/* Coinbase/Buy Dash/Cancel Order */
"Canceling this transaction does not cancel the trade order. You will receive DASH on your Coinbase account shortly." = "Ang pagkansela sa transaksyong ito ay hindi makakansela sa trade order. Makakatanggap ka ng DASH sa iyong Coinbase account sa ilang sandali.";
/* DashSpend */
"Card number" = "Numero ng card";
/* No comment provided by engineer. */
"Card PIN" = "PIN ng Card";
/* A verb. Action button title for an alert 'Change payment amount?' */
"Change" = "Baguhin";
/* No comment provided by engineer. */
"Change payment amount?" = "Palitan ang halaga ng ibabayad?";
/* No comment provided by engineer. */
"Change PIN" = "Baguhin ang PIN";
/* CoinJoin */
"Change to Advanced" = "Baguhin sa Advanced";
/* CoinJoin */
"Change to Intermediate" = "Baguhin sa Intermediate";
/* No comment provided by engineer. */
"Check current balance" = "Suriin ang kasalukuyang balanse";
/* TimeSkew */
"Check date & time settings" = "Suriin ang mga setting ng petsa at oras";
/* No comment provided by engineer. */
"Check your connection" = "Suriin ang koneksyon";
/* DashSpend */
"Check your email and enter the verification code." = "Suriin ang iyong email at ilagay ang verification code.";
/* Choose your Dash username */
"Choose your" = "Pumili ng iyong";
/* No comment provided by engineer. */
"Choose Your Username" = "Piliin ang Iyong Username";
/* No comment provided by engineer. */
"Claimed" = "Inangkin";
/* No comment provided by engineer. */
"Clear" = "Burahin";
/* No comment provided by engineer. */
"Clear trusted node?" = "Burahin ang pinagkakatiwalaang node?";
/* No comment provided by engineer. */
"Close" = "Sarado";
/* CrowdNode */
"Close and notify when it’s done" = "Isara at ipaalam kapag tapos na ito";
/* No comment provided by engineer. */
"Close App" = "Isara ang app";
/* Dash Portal */
"Coinbase" = "Coinbase";
/* Coinbase Two Factor Auth */
"Coinbase 2FA code" = "Coinbase 2FA code";
/* Coinbase/Buy Dash */
"Coinbase Fee" = "Bayad sa Coinbase";
/* CoinJoin */
"CoinJoin" = "CoinJoin";
/* CoinJoin */
"CoinJoin Collateral Inputs" = "Mga Collateral na Input ng CoinJoin";
/* CoinJoin */
"CoinJoin Create Denominations" = "CoinJoin Lumikha ng mga Denominasyon";
/* CoinJoin */
"CoinJoin Mixing" = "Paghahalo ng CoinJoin";
/* CoinJoin */
"CoinJoin Mixing Fee" = "Bayad sa Paghahalo ng CoinJoin";
/* No comment provided by engineer. */
"Confirm" = "Kumpirmahin";
/* Coinbase/Buy Dash/Confirm Order */
"Confirm (%d%@)" = "Kumpirmahin (%1$d%2$@)";
/* No comment provided by engineer. */
"Confirm PIN" = "Kumpirmahin ang PIN";
/* No comment provided by engineer. */
"Confirming" = "Kinukumpirma";
/* ZenLedger */
"Connect your crypto wallets to the ZenLedger platform. Learn more and get started with your Dash Wallet transactions." = "Ikonekta ang iyong mga crypto wallet sa platform ng ZenLedger. Matuto pa at magsimula sa iyong mga transaksyon sa Dash Wallet.";
/* Buy Sell Portal
Coinbase Entry Point */
"Connected" = "Konektado";
/* CrowdNode */
"Connected Dash address" = "Nakakonektang Dash address";
/* No comment provided by engineer. */
"Connected peers: %d" = "Nakakonektang kaibigan: %d";
/* No comment provided by engineer. */
"Connecting to payment server" = "Pagkonekta sa server ng pagbabayad";
/* Coinbase
Coinbase Two Factor Auth */
"Contact Coinbase Support" = "Makipag-ugnayan sa Suporta sa Coinbase";
/* DashSpend */
"Contact CTX Support" = "Makipag-ugnayan sa Suporta sa CTX";
/* No comment provided by engineer. */
"Contact Request Pending" = "Nakabinbin ang Kahilingan sa Pakikipag-ugnay";
/* No comment provided by engineer. */
"Contact Requests" = "Mga Kahilingan sa Pakikipag-ugnay";
/* No comment provided by engineer. */
"Contact Support" = "Contact Support";
/* No comment provided by engineer. */
"Contacts" = "Mga Contact";
/* No comment provided by engineer. */
"Continue" = "Ipagpatuloy";
/* No comment provided by engineer. */
"Continue Anyway" = "Magpatuloy pa rin";
/* Coinbase Entry Point */
"Convert Crypto" = "I-convert ang Crypto";
/* No comment provided by engineer. */
"Copied" = "Kinopya";
/* No comment provided by engineer. */
"Copy" = "Kopyahin";
/* No comment provided by engineer. */
"Copy Invitation Link" = "Kopyahin ang Link ng Imbitasyon";
/* No comment provided by engineer. */
"Copy Logs" = "Kopyahin ang logs";
/* No comment provided by engineer. */
"Copy text" = "Kopyahin ang text";
/* No comment provided by engineer. */
"Copyright © 2023 Dash Core" = "Copyright © 2023 Dash Core";
/* No comment provided by engineer. */
"Could not automatically recover missing or incorrect words" = "Hindi awtomatikong mababawi ang mga nawawala o hindi tamang salita";
/* No comment provided by engineer. */
"Could not connect to the Dash network, please check that you are connected to the internet." = "Hindi makakonekta sa network ng Dash, mangyaring suriin kung nakakonekta ka sa internet.";
/* No comment provided by engineer. */
"Could not find exchange rate." = "Hindi makita ang halaga ng palitan";
/* No comment provided by engineer. */
"Couldn't make payment" = "Hindi makagawa ng ipambabayad";
/* No comment provided by engineer. */
"Couldn't sweep balance" = "Hindi maka-sweep ng balanse";
/* No comment provided by engineer. */
"Couldn't transmit payment to Dash network" = "Hindi naipahatid ang bayad sa dash network";
/* No comment provided by engineer. */
"Create a new Invitation" = "Gumawa ng bagong Imbitasyon";
/* No comment provided by engineer. */
"Create a new invitation" = "Gumawa ng bagong Imbitasyon";
/* No comment provided by engineer. */
"Create a New Wallet" = "Gumawa ng bagong pitaka";
/* Usernames */
"Create a username" = "Gumawa ng username";
/* CrowdNode */
"Create Account" = "Lumikha ng Account";
/* Create DashSpend account */
"Create account" = "Gumawa ng account";
/* DashSpend account title */
"Create an account or log into an existing one" = "Lumikha ng isang account o mag-log in sa isang umiiral na";
/* CrowdNode */
"Create an online CrowdNode account" = "Lumikha ng online na CrowdNode account";
/* No comment provided by engineer. */
"Create invitation" = "Gumawa ng imbitasyon";
/* Create new account */
"Create new account" = "Gumawa ng bagong account";
/* CrowdNode
CrowdNode Portal */
"Create Online Account" = "Lumikha ng Online na Account";
/* Usernames */
"Create your username" = "Gumawa ng iyong username";
/* No comment provided by engineer. */
"Create your Username, find friends & family with their usernames and add them to your contacts" = "Lumikha ng iyong Username, maghanap ng mga kaibigan at pamilya gamit ang kanilang mga username at idagdag sila sa iyong mga contact";
/* Coinbase/Payment Methods */
"Credit Card" = "Credit Card";
/* CrowdNode */
"CrowdNode benefits" = "Mga benepisyo ng CrowdNode";
/* CrowdNode Portal */
"CrowdNode Support" = "Suporta sa CrowdNode";
/* CrowdNode */
"CrowdNode uses this address as your account ID. You will lose access to your funds within this wallet and your CrowdNode account if you lose the passphrase associated to this address." = "Ginagamit ng CrowdNode ang address na ito bilang iyong account ID. Mawawalan ka ng access sa iyong mga pondo sa loob ng wallet na ito at sa iyong CrowdNode account kung mawala mo ang passphrase na nauugnay sa address na ito.";
/* CrowdNode */
"CrowdNode withdrawal limits" = "Mga limitasyon sa pag-withdraw sa CrowdNode";
/* No comment provided by engineer. */
"CrowdNode · Account" = "CrowdNode · Account";
/* CrowdNode Portal */
"CrowdNode ➝ DashWallet" = "CrowdNode ➝ DashWallet";
/* No comment provided by engineer. */
"CSV Export" = "CSV Export";
/* Explore Dash/Filters */
"CTX gift card" = "CTX gift card";
/* Explore Dash: Filters */
"CTX gift cards" = "Mga CTX gift card";
/* Crowdnode */
"Current APY = %@" = "Kasalukuyang APY = %@";
/* CrowdNode */
"Current APY is %@" = "Ang kasalukuyang APY ay %@";
/* Explore Dash: Filters */
"Current location" = "Kasalukuyang Lokasyon";
/* Explore Dash/Merchants/Filters */
"Current Location Settings" = "Mga Setting ng Kasalukuyang Lokasyon";
/* No comment provided by engineer. */
"Current user: %@" = "Kasalukuyang gumagamit: %@";
/* Explore Dash: Filters */
"Dash" = "Dash";
/* No comment provided by engineer. */
"Dash address" = "Address ng Dash";
/* CrowdNode */
"Dash address designated for your CrowdNode account in the Dash Wallet on this device " = "Dash address na itinalaga para sa iyong CrowdNode account sa Dash Wallet sa device na ito";
/* No comment provided by engineer. */
"Dash balance" = "Balanse ng Dash";
/* Coinbase Entry Point */
"Dash balance on Coinbase" = "Dash balanse sa Coinbase";
/* Uphold Entry Point */
"Dash balance on Uphold" = "Dash balanse sa Uphold";
/* No comment provided by engineer. */
"Dash payments can't be less than %@" = "Ang pagbabayad ng Dash ay hindi dapat bababa sa %@";
/* No comment provided by engineer. */
"Dash username" = "Dash username";
/* DashSpend confirmation */
"Dash Wallet" = "Dash Wallet";
/* Buy Dash */
"Dash Wallet on this device" = "Dash Wallet sa device na ito";
/* No comment provided by engineer. */
"DashPay Invitation" = "Imbitasyon sa DashPay";
/* No comment provided by engineer. */
"DashPay Upgrade Fee" = "Bayad sa Pag-upgrade ng DashPay";
/* CrowdNode Portal */
"DashWallet ➝ CrowdNode" = "DashWallet ➝ CrowdNode";
/* No comment provided by engineer. */
"Date" = "Petsa";
/* Voting */
"Date: New to old" = "Petsa: Bago sa luma";
/* Voting */
"Date: Old to new" = "Petsa: Luma sa bago";
/* Voting */
"Default filter setting" = "Default na setting ng filter";
/* Location Service Status */
"Denied" = "Tinanggihan";
/* CrowdNode
CrowdNode Portal */
"Deposit" = "Deposito";
/* CrowdNode Portal */
"Deposit %@ to start earning" = "Magdeposito nang %@ para magsimulang kumita";
/* CrowdNode */
"Deposit at least %@ Dash on your Dash Wallet to complete a withdrawal" = "Magdeposito ng hindi bababa sa %@ Dash sa iyong Dash Wallet upang makumpleto ang isang withdrawal";
/* CrowdNode Portal */
"Deposit at least %@ to start earning" = "Magdeposito nang hindi bababa sa %@ para magsimulang kumita";
/* CrowdNode */
"Deposit sent" = "Ipinadala ang deposito";
/* No comment provided by engineer. */
"DEVICE SECURITY COMPROMISED\nAny 'jailbreak' app can access any other app's keychain data (and steal your Dash)." = "DEVICE SECURITY COMPROMISED\nAnumang 'jailbreak' app ay maaaring maka-access ng ibang app's keychain data (at nakawin ang iyong Dash).";
/* No comment provided by engineer. */
"DEVICE SECURITY COMPROMISED\nAny 'jailbreak' app can access any other app's keychain data (and steal your Dash). Wipe this wallet immediately and restore on a secure device." = "DEVICE SECURITY COMPROMISED\nAnumang 'jailbreak' app ay maaaring maka-access ng app's keychain data (at nakawin ang iyong Dash). I-wipe kaagad itong pitaka at i-restore sa ligtas na device.";
/* Coinbase Entry Point */
"Disconnect Coinbase Account" = "Idiskonekta ang Coinbase Account";
/* Uphold Entry Point */
"Disconnect Uphold Account" = "Idiskonekta ang Uphold Account";
/* Buy Sell Portal
Coinbase Entry Point */
"Disconnected" = "Idiskonekta";
/* DashSpend confirmation */
"Discount" = "Diskwento";
/* No comment provided by engineer. */
"Dismiss" = "Buwagin";
/* No comment provided by engineer. */
"Display Name" = "I-display ang pangalan";
/* Explore Dash: Filters */
"Distance" = "Distansya";
/* No comment provided by engineer. */
"Do not take a screenshot" = "Huwag kumuha ng screenshot";
/* Usernames */
"Do you really want to cancel the username request?" = "Gusto mo ba talagang kanselahin ang kahilingan sa username?";
/* No comment provided by engineer. */
"Done" = "Tapos";
/* ex., Download peer: 127.0.0.1:9999 */
"Download peer: %@" = "Download peer: %@";
/* CrowdNode */
"Due to CrowdNode’s terms of service users can withdraw no more than:" = "Dahil sa mga tuntunin ng serbisyo ng CrowdNode, ang mga user ay maaaring mag-withdraw ng hindi hihigit sa:";
/* Geoblock */
"Due to regulatory constraints, we need to verify that you are not in the UK. We only check your location when you enter the Coinbase features." = "Dahil sa mga hadlang sa regulasyon, kailangan naming i-verify na wala ka sa UK. Tinitingnan lang namin ang iyong lokasyon kapag ipinasok mo ang mga feature ng Coinbase.";
/* Geoblock */
"Due to regulatory constraints, you cannot use the Coinbase features while you are in the UK" = "Dahil sa mga hadlang sa regulasyon, hindi mo magagamit ang mga feature ng Coinbase habang ikaw ay nasa UK";
/* Usernames */
"Due to the voting process, the Dash Network has decided to assign the username '%@' to someone else. Please try again by requesting another username." = "Dahil sa proseso ng pagboto, nagpasya ang Dash Network na italaga ang username '%@' sa ibang tao. Pakisubukang muli sa pamamagitan ng paghiling ng isa pang username.";
/* CrowdNode */
"e.g. johndoe@mail.com" = "hal. juandelacruz@gmail.com";
/* No comment provided by engineer. */
"Each invitation will be funded with this amount so that the receiver can quickly create their username on the Dash Network" = "Ang bawat imbitasyon ay popondohan ng halagang ito upang mabilis na magawa ng tatanggap ang kanilang username sa Dash Network";
/* (List of notifications happened) Earlier (some time ago) */
"Earlier" = "Mas maaga";
/* No comment provided by engineer. */
"Easily stake Dash and earn passive income with a few simple clicks." = "Madaling i-stake ang Dash at kumita ng passive income sa ilang simpleng pag-click.";
/* No comment provided by engineer. */
"Edit Profile" = "I-edit ang profile";
/* No comment provided by engineer. */
"Edit profile" = "I-edit ang profile";
/* Invitation tag placeholder */
"eg: Dad" = "hal: Tatay";
/* Input username textfield placeholder */
"eg: johndoe" = "hal: juandelacruz";
/* CrowdNode */
"Email" = "Email";
/* No comment provided by engineer. */
"Enable Face ID" = "Paganahin ang Face ID";
/* No comment provided by engineer. */
"Enable Receive Notifications" = "Paganahin ang pagtanggap ng mga notipikasyon";
/* No comment provided by engineer. */
"Enable Touch ID" = "Paganahin ang Touch ID";
/* No comment provided by engineer. */
"Enter" = "I-enter";
/* Coinbase Two Factor Auth */
"Enter Coinbase 2FA code" = "Ilagay ang Coinbase 2FA code";
/* No comment provided by engineer. */
"Enter PIN" = "I-enter ang PIN";
/* No comment provided by engineer. */
"Enter Recovery Phrase" = "Ilagay ang Recovery Phrase";
/* Enter verification code */
"Enter verification code" = "Ilagay ang verification code";
/* No comment provided by engineer. */
"Enter your 2FA code below" = "Ilagay ang iyong 2FA code sa ibaba";
/* No comment provided by engineer. */
"Enter your Gravatar Email ID" = "Ilagay ang iyong Gravatar Email ID";
/* Voting */
"Enter your voting key" = "Ilagay ang iyong voting key";
/* No comment provided by engineer. */
"Error" = "Mali";
/* CTXSpend error */
"Error processing server response. Please try again later." = "Error sa pagproseso ng tugon ng server. Pakisubukang muli mamaya.";
/* No comment provided by engineer. */
"Error updating your profile" = "Error sa pag-update ng iyong profile";
/* CoinJoin */
"Error ·" = "Pagkakamali ·";
/* No comment provided by engineer. */
"Exit" = "Lumabas";
/* No comment provided by engineer. */
"Expense" = "Gastos";
/* No comment provided by engineer. */
"Explore" = "Galugarin";
/* No comment provided by engineer. */
"Explore Dash" = "Galugarin ang Dash";
/* ZenLedger */
"Export all transactions" = "I-export ang lahat ng transaksyon";
/* No comment provided by engineer. */
"Export CSV" = "I-export ang CSV";
/* No comment provided by engineer. */
"Extended Public Keys" = "Pinalawak na Public Key";
/* No comment provided by engineer. */
"Face ID limit" = "Face ID limit";
/* No comment provided by engineer. */
"Failed to load barcode" = "Nabigong i-load ang barcode";
/* Coinbase */
"Failed to start auth session" = "Nabigong simulan ang auth session";
/* Buy Sell Portal */
"Failed to sync" = "Nabigong mag-sync";
/* Explore Dash */
"Failed to sync on" = "Nabigong mag-sync";
/* No comment provided by engineer. */
"Failed wallet update" = "Nabigo sa pag-update ng pitaka";
/* No comment provided by engineer. */
"Fee" = "Bayad";
/* No comment provided by engineer. */
"Fee is greater than balance" = "Ang bayad ay mas mataas sa iyong balanse";
/* No comment provided by engineer. */
"Fee will be deducted from requested amount." = "Ang bayad ay ibabawas mula sa hiniling na halaga.";
/* Coinbase/Fee info */
"Fees in crypto purchases" = "Mga bayarin sa mga pagbili ng crypto";
/* No comment provided by engineer. */
"Fetching Image" = "Kinukuha ang Larawan";
/* Explore Dash */
"Fetching Info" = "Kinukuha ang Impormasyon";
/* Balance */
"Fetching rates…" = "Kinukuha ang mga rate...";
/* Coinbase/Payment Methods */
"Fiat Account" = "Fiat Account";
/* No comment provided by engineer. */
"Filter" = "Salain";
/* No comment provided by engineer. */
"Filter transactions" = "I-filter ang mga transaksyon";
/* No comment provided by engineer. */
"Filtered by" = "Na-filter ng";
/* Explore Dash/Merchants/Filters */
"Filtered by:" = "Na-filter ni:";
/* Explore Dash */
"Filters" = "Mga filter";
/* No comment provided by engineer. */
"Find a user on the Dash Network" = "Maghanap ng gumagamit sa Network ng Dash";
/* No comment provided by engineer. */
"Find ATMs where you can buy or sell Dash." = "Maghanap ng mga ATM kung saan maaari kang bumili o magbenta ng Dash.";
/* No comment provided by engineer. */
"Find merchants that accept Dash payments." = "Maghanap ng mga merchant na tumatanggap ng mga pagbabayad sa Dash.";
/* No comment provided by engineer. */
"Find merchants that accept Dash, where to buy it and how to earn income with it." = "Maghanap ng mga merchant na tumatanggap ng Dash, kung saan ito bibilhin at kung paano kumita gamit ito.";
/* CrowdNode */
"First deposit should be more than %@" = "Ang unang deposito ay dapat na higit sa %@";
/* CrowdNode */
"First minimum deposit" = "Unang Minimum na Deposito";
/* DashSpend */
"Fixed amounts" = "Mga nakapirming halaga";
/* Explore Dash: Filters */
"Fixed denominated amounts" = "Mga nakapirming halaga";
/* Explore Dash: Filters */
"Flexible amounts" = "Mga flexible na amount";
/* DashSpend */
"Temporarily unavailable" = "Pansamantalang hindi magagamit";
/* Usernames */
"For some reason, the request for the username '%@' has failed." = "Para sa ilang kadahilanan, ang kahilingan para sa username '%@' ay nabigo.";
/* Coinbase */
"For your security, you have been signed out." = "Para sa iyong seguridad, na-sign out ka.";
/* No comment provided by engineer. */
"Forget about long crypto addresses, create the username, find friends and add them to your contacts" = "Kalimutan ang tungkol sa mahabang crypto address, lumikha ng username, maghanap ng mga kaibigan at idagdag ang mga ito sa iyong mga contact";
/* No comment provided by engineer. */
"Forgot PIN?" = "Nakalimutan ang PIN?";
/* No comment provided by engineer. */
"Found missing word:\n%@" = "Natagpuan ang nawawalang salita:\n%@";
/* No comment provided by engineer. */
"Found missing words:\n%@" = "Natagpuan ang mga nawawalang salita:\n%@";
/* No comment provided by engineer. */
"Found potential missing words:\n%@" = "Natagpuan ang mga potensyal na nawawalang salita:\n%@";
/* DashSpend confirmation */
"From" = "mula sa";
/* from CrowdNode */
"from CrowdNode" = "mula sa CrowdNode";
/* from Dash Wallet */
"from Dash Wallet" = "mula sa Dash Wallet";
/* Uphold Entry Point */
"From Uphold to Dash Wallet" = "Mula sa Uphold hanggang Dash Wallet";
/* Dash Service Overview */
"From Uphold to your Dash Wallet" = "Mula sa Uphold hanggang sa iyong Dash Wallet";
/* Coinbase */