-
Notifications
You must be signed in to change notification settings - Fork 115
/
language.json
1429 lines (1429 loc) · 97.7 KB
/
language.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"name": "English",
"code": "en",
"flag" : "us.png",
"strings": {
"footer": {
"about_us": "About Us",
"nodes_connected": "Nodes Connected",
"status": "Status:",
"enable": "Enable",
"advanced": "Advanced:",
"disable": "Disable",
"ok": "Ok",
"about_and_contact": "About & Contact:",
"not_connected": "Not Connected",
"currency": "Currency:"
},
"charts": {
"show_data_points": "Show data points",
"market_price2": "A chart showing the USD market price from Mt.gox",
"market_cap2": "A graph showing the total number of bitcoins in circulation * the market price in USD.",
"total_bitcoins": "Total Bitcoins In Circulation",
"hash_rate_label": "Hash Rate GH/s",
"n_unique_addresses2": "A chart of the number of unique bitcoin addresses used per day.",
"market_cap_label": "Market Cap (USD)",
"n_transactions": "Number Of Transactions",
"my_wallet_n_tx": "My Wallet Number of Transactions per day",
"trade_vol2": "A chart showing the USD trade volume from the top exchanges.",
"n_transactions_excluding_popular3": "popular addresses",
"errors": {
"no_stats": "No Stats Found For This Period"
},
"n_transactions_excluding_popular2": "A chart of the total number of unique bitcoin transactions per day excluding transactions with involve on of the top 100 most",
"total_bitcoins_label": "Total Bitcoins (BTC)",
"my_wallet_n_users_label": "User Count",
"day_average_7": "7 day average",
"my_wallet_n_users2": "Number of wallets hosts using our My Wallet Service.",
"days_destroyed_filter_week2": "Filtered by minimum input age of 1 week.",
"output_volume": "Total Output Volume",
"my_wallet_transaction_volume2": "24hr Transaction Volume of our web wallet service.",
"operating_margin2": "The graph showing miners revenue minus estimated electricity and bandwidth costs.",
"my_wallet_n_tx_label": "Number Of Transactions",
"header": "Bitcoin Charts",
"mywallet_n_transactions_per_day": "My Wallet: Number of transactions per day",
"days_60": "60 Days",
"blockchain_size_label": "MB",
"my_wallet_transaction_volume_label": "Transaction Volume (BTC)",
"estimated_transaction_volume_usd": "Estimated USD Transaction Volume",
"transaction_fees2": "A charts showing the total BTC value of transaction fees miners earn per day.",
"miners_revenue_label": "Miners Revenue (BTC)",
"hash_rate2": "The estimated number of giga hashes per second (billions of hashes per second) the bitcoin network is performing.",
"balance_of_address": "Balance of bitcoin address:",
"days_destroyed_filter_year2": "Filtered by minimum input age of 1 year.",
"title": "Bitcoin Charts - Blockchain.info",
"days_180": "180 Days",
"my_wallet_n_tx2": "Number of transactions made by My Wallet Users per day.",
"market_price_usd": "Market Price (USD)",
"n_transactions2": "A chart of the total number of unique bitcoin transactions per day.",
"total_receive_per_day": "Total BTC Received per day to:",
"network_deficit2": "Shows difference between transaction fees and cost of bitcoin mining.",
"blockchain_size2": "The total size of all block headers and transactions. Not including database indexes.",
"btc_received": "BTC Received",
"mywallet_balance_over_time": "My Wallet: Balance over time",
"days_destroyed_filter_week": "Bitcoin Days Destroyed (Filtered By Min Age 1 Week)",
"transaction_fees_usd": "Transaction Fees in USD",
"output_volume_label": "Output Volume (BTC)",
"n_transactions_per_block2": "A chart of the average number of transactions per block.",
"my_wallet_transaction_volume": "My Wallet Transaction Volume",
"n_transactions_excluding_popular": "Number of transactions excluding popular addresses",
"estimated_transaction_volume_usd_label": "Transaction Volume (USD)",
"days_destroyed_label": "Days Destroyed",
"days_destroyed2": "A none cumulative version of Bitcoin Days Destroyed.",
"network_deficit": "Network Deficit",
"cost_percent_per_transaction": "Cost % of transaction volume",
"total_received_to_address": "Total Received to bitcoin address:",
"estimated_transaction_volume2": "Similar to the total output volume with the addition of an algorithm which attempts to remove change from the total value. This maybe a more accurate reflection of the true transaction volume.",
"operating_margin_label": "Operating profit %",
"year_1": "1 Year",
"operating_margin": "Mining Operating Margin",
"cost_per_transaction_usd": "Cost per transaction (USD)",
"days_destroyed_filter_month": "Bitcoin Days Destroyed (Filtered By Min Age 1 Month)",
"number_of_transactions": "Number of Transactions",
"cost_per_transaction2": "A chart showing miners revenue divided by the number of transactions.",
"cost_per_transaction": "Cost Per Transaction",
"days_destroyed_filter_month2": "Filtered by minimum input age of 1 month.",
"raw_values": "Raw values",
"transaction_fees": "Total Transaction Fees",
"linear_scale": "Linear Scale",
"mywallet_total_btc_received": "My Wallet: BTC Received",
"n_unique_addresses": "Number Of Unique Bitcoin Addresses Used",
"n_transactions_per_block": "Number of transactions per block",
"avg_confirmation_time2": "The Average time take for transactions to be accepted into a block.",
"mywallet_total_Received_per_day": "My Wallet: Total Received per day to:",
"hide_data_points": "Hide data points",
"log_scale": "Logarithmic Scale",
"number_of_addresses": "Number of Addresses",
"my_wallet_n_users": "My Wallet Number Of Users",
"estimated_transaction_volume_usd2": "The Estimated Transaction Volume in USD value.",
"transaction_fees_label": "Transaction Fees (BTC)",
"final_balance": "Final Balance",
"days_destroyed_cumulative": "Bitcoin Days Destroyed Cumulative",
"estimated_transaction_volume_label": "Transaction Volume (BTC)",
"total_received": "Total Received",
"days_destroyed": "Bitcoin Days Destroyed",
"n_transactions_per_day_to": "No. of transactions per day to:",
"cost_percent_per_transaction2": "A chart showing miners revenue as as percentage of the transaction volume.",
"blockchain_size": "Blockchain Size",
"days_30": "30 Days",
"network_deficit_label": "Network Deficit (USD)",
"avg_confirmation_time": "Average Transaction Confirmation Time",
"output_volume2": "The total value of all transaction outputs per day. This includes coins which were returned to the sender as change.",
"total_bitcoins2": "A graph showing the historical total number of bitcoins which have been mined.",
"sub_header": "Various bitcoin charts and currency statistics",
"trade_vol_label": "Trade Volume (USD)",
"trade_vol": "USD Exchange Trade Volume",
"days_destroyed_filter_year": "Bitcoin Days Destroyed (Filtered By Min Age 1 Year)",
"estimated_transaction_volume": "Estimated Transaction Volume",
"n_of_transactions_per_day": "Number Of transactions Per Day",
"hash_rate": "Hash Rate",
"transaction_fees_usd_label": "Transaction Fees (BTC)",
"market_cap": "Market Capitalization",
"transactions_per_block": "Transactions per block",
"meta_description": "The most popular charts and statistics about the bitcoin network. Number of transactions Per Day, Market Price, Volume charts etc.",
"miners_revenue2": "Historical chart showing number of bitcoins mined per day + transaction fees * market price.",
"market_price": "Market Price (USD)",
"source": "Source: blockchain.info",
"miners_revenue": "Miners Revenue",
"all_time": "All Time",
"cost_percent_per_transaction_label": "% of transaction volume",
"days_destroyed_cumulative2": "Bitcoin Days Destroyed is a measure of the transaction volume of Bitcoin. If someone has 100 BTC that they received a week ago and they spend it then 700 bitcoin days have been destroyed. If they take those 100BTC and send them to several addresses and then spend them then although the total transaction volume could be arbitrarily large the number of bitcoin days destroyed is still 700.",
"avg_confirmation_time_label": "Confirmation Time (Minutes)"
},
"home": {
"other_links": {
"most_popular": "Most Popular Addresses",
"strange2": "Transactions which we were unable to decode the output address",
"double_spends": "Double Spends",
"largest2": "Largest 100 transactions from the last 50,000 transactions",
"hub_nodes2": "A list of the most well connected bitcoin super nodes",
"wallet": "My Wallet",
"unconfirmed": "Unconfirmed Transactions",
"hub_nodes": "Hub Nodes",
"strange": "Strange Transactions",
"rejected": "Rejected Inventory",
"most_popular2": "Addresses which have received the most payments",
"globe": "Bitcoin Nodes Globe",
"nodes2": "A Log of all bitcoin nodes blockchain.info has connected to",
"rejected2": "Blocks and transactions which have been rejected by our nodes",
"globe2": "WebGL globe showing bitcoin nodes (Requires Chrome, Safari)",
"double_spends2": "Double spends detected in the last 500,000 transactions",
"orphaned2": "Valid blocks not part of the main bitcoin chain",
"pools": "Mining Pool Stats",
"header": "Other Bitcoin Links",
"largest": "Largest Transactions",
"pools2": "Pie chart showing the market share of the top bitcoin mining pools",
"orphaned": "Orphaned Blocks",
"notifications": "Payment Notifications",
"nodes": "Bitcoin Nodes List",
"notifications2": "Receive free email notifications when there is activity on your bitcoin addresses",
"unconfirmed2": "Transactions waiting to be included in a block",
"wallet2": "Manage your money with Bitcoin's most advanced web wallet."
},
"sub_header": "Most recently mined blocks in the bitcoin block chain",
"search_explain": "You may enter a block height, address, block hash, transaction hash, hash160, or ipv4 address..",
"title": "Bitcoin Block Explorer - Blockchain.info",
"table_headers": {
"transactions": "Transactions",
"sent": "Total Sent",
"height": "Height",
"age": "Age",
"size": "Size (kB)",
"relayed": "Relayed By"
},
"more": "More...",
"meta_description": "Bitcoin Block Explorer & Currency Statistics. View detailed information on all bitcoin transactions and blocks.",
"search": "Search",
"about": {
"p3": "For an introduction to bitcoin please see {0}",
"p2": "This site allows you to navigate the bitcoin blockchain (a database which holds information about all transactions). We also operate bitcoin's largest and most secure wallet service.",
"p1": "Bitcoin is a peer-to-peer currency. Peer-to-peer means that no central authority issues new money or tracks transactions. These tasks are managed collectively by the network.",
"header": "About",
"link_txt" : "weusecoins.com",
"link_href" : "http://www.weusecoins.com/"
},
"latest_transactions": "Latest Transactions",
"header": "Home",
"search_placeholder": "Address / Firstbits / ip / SHA hash"
},
"header": {
"home_title": "Blockchain.info Home",
"charts": "Charts",
"home": "Home",
"stats_title": "Bitcoin Stats",
"logo_alt_title": "Bitcoin block explorer and currency statistics",
"developer": "Developers",
"stats": "Stats",
"charts_title": "Bitcoin Charts",
"wallet_title": "Bitcoin Wallet",
"developer_title": "Blockchain Developer Tools",
"wallet": "Wallet",
"search_placeholder": "Search"
},
"misc": {
"recommended" : "Recommended",
"unknown_exception": "Unknown Exception",
"unknown": "Unknown",
"and_word" : "and",
"disclaimer" : "Any use of the term money on this website refers to virtual currency only. Exchange rates displayed are provided by 3rd parties and are not an indication of Bitcoin being backed by any commodity or other money."
},
"stats" : {
"title" : "Bitcoin Statistics - Blockchain.info",
"header" : "Currency Stats",
"meta_description" : "Over 100 different bitcoin market and network statistics. Number of nodes, Transaction volume, Mining difficulty and more.",
"sub_header" : "Bitcoin currency statistics",
"table" : {
"minutes" : "minutes",
"blocks_mined" : "Blocks Mined",
"time_between_blocks" : "Time Between Blocks",
"bitcoins_mined" : "Bitcoins Mined",
"total_transaction_fees" : "Total Transaction Fees",
"number_of_transactions" : "No. of Transactions",
"total_output_volume" : "Total Output Volume",
"estimated_transaction_volume" : "Estimated Transaction Volume",
"market_summary" : "Market Summary",
"total_market_cap" : "Total Market Cap",
"million" : "million",
"market_price" : "Market Price",
"trade_volume" : "Trade Volume",
"mining_cost" : "Mining Cost",
"total_miners_revenue" : "Total Miners Revenue",
"percent_earned_from_fees" : "% earned from transaction fees",
"percent_of_transaction_volume" : "% of transaction volume",
"cost_per_transaction" : "Cost Per Transaction",
"hash_rate_electricity" : "Hash Rate and Electricity Consumption",
"difficulty" : "Difficulty",
"hash_rate" : "Hash Rate",
"electricity_consumption" : "Electricity Consumption",
"electricity_cost" : "Electricity Cost",
"mining_profits" : "Mining Profits",
"operating_profit" : "Operating Profit",
"operating_margin" : "Operating Margin",
"profit_margin" : "Profit Margin",
"weighted" : "weighted"
},
"period" : "All statistics are for the previous 24 hour period unless otherwise stated",
"notice1" : "Electricity consumption is estimated based on power consumption of 650 Watts per gigahash and electricity price of 15 cent per kilowatt hour. In reality some miners will be more or less efficient.",
"notice2" : "For profit margin hardware costs are estimated to be $1000 per gigahash every 2 years, and bandwidth $1 per gigahash per year."
},
"wallet" {
"my_wallet" : "My Wallet",
"slogan" : "Be Your Own Bank",
"new_users" : "New Users",
"new_users_p1" : "Creating a new bitcoin wallet takes literally a few seconds. You will be able to send and receive payments immediately.",
"existing_users" : "Existing Users",
"existing_users_p1" : "If you have previously created a My Wallet account click below to login.",
"help" : "Help And Support",
"help_p1" : "Please consult the FAQ for commonly asked questions. For any problems with the site please contact us.",
"start_new" : "Start A New Wallet",
"login_now" : "Login Now",
"support_pages" : "Support Pages"
},
"transaction_page" :{
"title" : "Bitcoin Transaction {0}",
"header" : "Transaction",
"meta_description" : "View information about a bitcoin transaction {0}",
"sub_header" : "View information about a bitcoin transaction",
"double_spend" : {
"p1" : "Warning! this transaction is a double spend of",
"p2" : "You should be extremely careful when trusting any transactions to/from this sender."
},
"summary" : "Summary",
"bytes" : "bytes",
"received_time" : "Received Time",
"size" : "Size",
"included_in_blocks" : "Included In Blocks",
"minutes" : "minutes",
"confirmations" : "Confirmations",
"estimated_time" : "Estimated Confirmation Time",
"estimated_possibly_never" : "Possibly Never (Double Spend)",
"estimated_very_soon" : "Very Soon",
"estimated_unknown" : "Unknown",
"reward_from_block" : "Reward From Block",
"scripts" : "Scripts",
"hide_scripts" : "Hide scripts & coinbase",
"show_scripts" : "Show scripts & coinbase",
"relayed_by_ip" : "Relayed by IP",
"visualize" : "Visualize",
"tree_chart" : "View Tree Chart",
"inputs_and_outputs" : "Inputs and Outputs",
"total_input" : "Total Input",
"total_output" : "Total Output",
"fees" : "Fees",
"estimated_btc_transacted" : "Estimated BTC Transacted",
"network_propagation" : "Network Propagation (Click to view)",
"decoded" : "decoded",
"input_scripts" : "Input Scripts",
"output_scripts" : "Output Scripts",
"strange" : "Strange",
"ok" : "OK"
},
"transaction" : {
"public_note" : "Public Note:",
"size" : "Size:",
"fee" : "Fee:",
"escrow" : "Escrow",
"output" : "Output",
"input_decode_error" : "Unable to decode input address",
"output_decode_error" : "Unable to decode output address",
"no_inputs" : "No Inputs (Newly Generated Coins)",
"spent" : "Spent",
"unspent" : "Unspent",
"unconfirmed_transaction" : "Unconfirmed Transaction!",
"confirmations" : "Confirmations",
"double_spend" : "Double Spend!"
},
"address" : {
"title" : "Bitcoin Address {0}",
"meta_description" : "Transactions sent and received from bitcoin address ",
"bitcoin_address" : "Bitcoin Address",
"sub_header" : "Addresses are identifiers which you use to send bitcoins to another person.",
"double_spend_warning" : "Warning! this bitcoin address contains transactions which maybe double spends. You should be extremely careful when trusting any transactions to/from this address.",
"table_summary" {
"title" : "Summary",
"address" : "Address",
"short_link" : "Short Link",
"taint_analysis" : "Taint Analysis",
"view_analysis" : "View Analysis"
},
"table_transactions" {
"title" : "Transactions",
"number_of_transactions" : "No. Transactions",
"unspent_inputs" : "Unspent Inputs",
"total_received" : "Total Received",
"final_balance" : "Final Balance"
},
"deposit_with_cash" : "Deposit With Cash",
"request_payment" : "Request Payment",
"sent" : "Sent",
"received" : "Received",
"escrow" : "Escrow",
"confirmed" : "Confirmed",
"confirmed_only" : "Confirmed Only",
"newest_first" : "(Newest First)",
"oldest_first" : "(Oldest First)",
"transactions" : "Transactions",
"no_transactions" : "No transactions found for this address, it has probably not been used on the network yet.",
"previous" : "Previous",
"next" : "Next",
"too_large_to_filter" : "This Address ledger is too large to filter",
"invalid_address" : "Sorry this is is not a valid bitcoin address",
"invalid_hash_160" : "Sorry this is is not a valid hash 160",
"no_address_provided" : "No Address Provided"
},
"wallet_index" : {
"title" : "Bitcoin Wallet",
"meta_description" : "My Wallet is a free online bitcoin wallet which you can use to make worldwide, anonymous payments for free. We make paying with bitcoins easy and secure.",
"confused" {
"p1" : "Confused? Read the",
"p2" : "Beginners FAQ"
},
"p1" : "My Wallet is a free online bitcoin wallet which you can use to make worldwide, anonymous payments for free. We make paying with bitcoins easy and secure available anywhere on your phone or desktop.",
"p2" : "We are not a bank, you retain complete ownership of your Money. We cannot view your balance, see your transactions or make payments on your behalf.",
"create_my_free_wallet" : "Create My Free Wallet",
"try_demo_account" : "Try A Demo Account",
"techradar_quote" : "By 2015, cash could be looking like an endangered species",
"introduction_video" : "Bitcoin Introduction View",
"slides" : {
"mobile_support" : "Mobile Support",
"mobile_support_p1" : "Our web interface supports all popular mobile devices including",
"mobile_support_p2" : "If your phone gets lost or stolen your wallet will still be safely backed up on our servers.",
"android_app" : "Blockchain Android App",
"iphone_app" : "Blockchain iPhone App",
"double_encryption" : "Double Encryption",
"double_encryption_p1" : "Before your bitcoin wallet is saved on our servers it is AES 256 Bit encrypted in your browser. Your password is never shared with us so not even we can open your wallet. Not only that but your wallet can be optionally encrypted again with a second password requiring one password to login and a separate password to make transactions. If that's not enough we also support a variety of two-factor authentication methods including Mt.Gox Yubikeys.",
"one_click_backups" : "One Click Backups",
"one_click_backups_p1" : "We make every effort to keep your wallet safely backed up. However there is no substitution for having a backup on your own PC. At a touch of a button you can have your encrypted wallet emailed to you, saved to your dropbox account or saved locally. Then even if blockchain.info suffers data loss or goes offline for you can still access your funds.",
"payment_notifications" : "Payment Notifications",
"payment_notifications_p1" : "Receive Notifications whenever a payment is sent or received from your bitcoin wallet. The average delay for payment notifications is less that 50ms. If you receive a payment while logged into My Wallet a sound will play and the interface will instantaneously update without needing a page reload.",
"charts_analytics" : "Charts & Analytics",
"charts_analytics_p1" : "Generate charts and reports for recent bitcoin transactions. View your account balance over time, number of transactions and revenue per day.",
"charts_analytics_img_title" : "Built In Charts & Analytics",
"payment_notifications_skype" : "Bitcoin Payment Notifications Skype",
"payment_notifications_gtalk" : "Payment Notifications Google Talk"
},
"free_open_source" : "Free. Open Source.",
"successfully_transacted" : "Successfully Transacted.",
"security" : {
"title" : "Secure",
"p1" : "Blockchain.info uses industry standard",
"p2" : "encryption to protect your wallet from thieves and hackers. The amazing part is the encryption is all done within your browser, before it is saved on our servers, so not even we have access to your account!",
"p3" : "My Wallet builds on the security of bitcoin by providing a host of features to help you keep your money safe including",
"paper_wallets" : "Paper Wallets",
"offline_transactions" : "Offline Transactions",
"remote_backups" : "Remote Backups"
},
"easy" : {
"title" : "Easy To Use",
"p1" : "Using My Wallet is no different to using",
"p2" : "or online banking. Upon login you will presented with your Balance and a list of your recent transactions",
"send_via" : "Send Via Facebook, Email or SMS."
},
"control" : {
"title" : "Retain Control",
"p1" : "The beauty of bitcoin is that it's fully decentralized, no government or corporation can block payments or revoke accounts.",
"p2" : "With My Wallet you retain full control of your",
"p3" : "private key",
"p4" : "meaning wallets can never be seized or blocked and can be imported into any desktop bitcoin client."
},
"features" : {
"title" : "Feature Rich",
"p1" : "The most advanced online bitcoin wallet available.",
"full_list" : "View a full list of features",
"free" : "Free, No Fees",
"two_factor" : "Two Factor Authentication",
"client_side_encryption" : "Secure Client Side Encryption",
"live_update" : "Live Updating Interface",
"backups" : "Ability to make your own backups.",
"import_export" : "Import / Export Private keys.",
"payment_notifications" : "SMS & Email Payment notifications"
},
"anonymous" : {
"title" : "Anonymous",
"p1" : "All we require for an account is a password, no other personally identifiable information is needed. We cannot see your public keys, view your transactions or check your account balance.",
"p2" : "My Wallet also includes a built in",
"mixing_service" : "mixing service",
"p3" : "guaranteeing 100% anonymous transactions."
},
"merchants" : {
"title" : "Worldwide Merchants",
"p1" : "1000's of Merchants already accept bitcoin worldwide with new ones joining everyday. Everything from Online Poker to Organic Coffee you name it you can buy it with bitcoins.",
"p2" : "A full list of bitcoin merchants can be found on the",
"wiki" : "official wiki"
},
"tooltips" : {
"aes_title" : "AES Encryption",
"aes" : "An extremely strong encryption standard adopted by the US government and now widely used worldwide for VPN and other encrypted communications",
"paper_wallet" : "A paper wallet is a printable document which contains all the information required to recover your bitcoins.",
"paper_wallet_title" : "Paper Wallet",
"remote_backup" : "Remote backup is when your wallet is stored in separate location other than your local PC. This is important to ensure your money is not lost in the event of a hard drive failure or other computer malfunction",
"remote_backup_title" : "Remote Backups",
"offline_transactions_title" : "Offline Transactions",
"offline_transactions" : "Offline transactions are bitcoin transactions which are generated without an active internet connection. They are considered more secure as your PC is isolated from the internet.",
"paypal_title" : "PayPal",
"paypal" : "PayPal is an obsolete payment provider",
"private_key_title" : "Private Key",
"private_key" : "Bitcoin addresses consist of two parts. The private key is the part which is used to prove ownership of an address and is need to withdraw funds. It should be kept safe at all times."
}
},
"block" : {
"title" : "Bitcoin Block #{0}",
"meta_description" : "Transactions contained within bitcoin block",
"header" : "Block",
"summary_table" : {
"title" : "Summary",
"number_of_transactions" : "Number Of Transactions",
"output_title" : "Output Title",
"estimated_transaction_volume" : "Estimated Transaction Volume",
"transaction_fees" : "Transaction Fees",
"height" : "Height",
"timestamp" : "Timestamp",
"main_chain" : "Main Chain",
"orphaned" : "Orphaned",
"received_time" : "Received Time",
"relayed_by" : "Relayed By",
"difficulty" : "Difficulty",
"bits" : "Bits",
"size" : "Size",
"version" : "Version",
"nonce" : "Nonce",
"block_reward" : "Block Reward"
},
"hash_table" : {
"title" : "Hashes",
"hash" : "Hash",
"previous_block" : "Previous Block",
"next_block" : "Next Block(s)",
"merkle_root" : "Merkle Root",
},
"network_propagation" : "Network Propagation",
"click_to_view" : "Click To View",
"transactions_header" : "Transactions",
"transactions_sub_header" : "Transactions contained within this block",
"no_block_index" : "No block index provided"
},
"wallet_new" : {
"title" : "My Wallet",
"header1" : "Create A New Wallet.",
"sub_header1" : "Simply choose a secure password and press continue.",
"password" : "Password:",
"confirm_password" : "Confirm Password:",
"captcha" : "Captcha:",
"continue_btn" : "Continue",
"wallet_created" : "New Wallet Created!",
"wallet_created_p1" : "Your new online wallet has been successfully created. It is important you keep both your wallet identifier and password safe. We are only able to help recover lost wallet identifiers if you provide us with a valid email address. We are unable to help recover lost passwords!",
"restore_link_title" : "You may restore this wallet at anytime by visiting:",
"fav_recommendation" : "It is recommended you add this to your favourites now.",
"email" : "Email",
"email_placeholder" : "Email Address",
"email_sub" : "If you would like us to email you a link to you new wallet please enter your email address below.",
"alias" : "Alias",
"alias_placeholder" : "Memorable word or nickname",
"alias_sub" : "You can choose a alias for your wallet which you can login with instead of using an identifier.",
"proceed_to_login" : "Proceed To Login",
"dont_forget_password" : "Don't Forget Your Password!",
"dont_forget_password_p1" : "As your password is not shared with us it is extremely important to remember it, if necessary write it on a a post-it note now. There is no password recovery process!",
"password_strength" : "Password Strength",
"password_strength_p1" : "We require a password of at least 10 characters in length to ensure that even if our database is compromised your wallet will remain secure. A password 10 characters in length will take over 1000 years to decrypt.",
"is_already_registered" : "Already registered?",
"existing_account" : "If you already have a My Wallet account {0}",
"disclaimer" : "Disclaimer",
"anonymity_policy" : "Anonymity Policy",
"please_read" : "Please read our {0} and {1}"
},
"wallet_app" : {
"title" : "My Wallet",
"loading" : "Loading",
"status" : "Status:",
"disconnected" : "DISCONNECTED",
"nav" : {
"home" : "Wallet Home",
"transactions" : "My Transactions",
"send" : "Send Money",
"receive" : "Receive Money",
"import_export" : "Import / Export",
},
"tooltips" : {
"balance" : {
"title" : "Your Balance",
"tip" : "This shows the balance of your bitcoin wallet. You may not be able to spend this amount until all transactions are confirmed."
},
"connection_status" : {
"title" : "Connection Status",
"tip" : "If disconnected you will need to refresh the page to see new transactions. When connected new transactions will show instantly."
}
},
"account_settings" : {
"title" : "Account Settings",
"sub_header" : "Change your My Wallet account settings.",
"nav" : {
"header" : "Account Information",
"general" : "General",
"notifications" : "Notifications",
"passwords" : "Passwords",
"security" : "Security",
"devices" : "Devices"
},
"recommended" : "Recommended",
"optional" : "Optional",
"email" : "Email",
"email_description" : "An email is needed to help recover a lost wallet identifier and for payment notifications.",
"email_placeholder" : "Your Email",
"email_verified" : "Email Verified",
"email_verification_code" : "Email Verification Code:",
"verify_email_btn" : "Verify",
"resend_link" : "Resend Link",
"email_not_verified" : "Email Not Verified",
"alias" : "Alias",
"alias_description" : "An alias is short link which can be memorized for quick access to your account without needing to remember an identifier",
"alias_placeholder" : "A Nickname or other memorable word",
"mobile_number" : "Mobile Number",
"mobile_number_description" : "Please enter Your Mobile Phone number below. International SMS messaging can sometimes be unreliable and may not be available to some countries and networks.",
"sms_verified" : "SMS Verified",
"send_sms_code" : "Send SMS Code",
"enter_sms_code" : "Enter the code contained within verification sms message.",
"verify_sms_btn" : "Verify",
"sms_verification_placeholder" : "SMS Verification Code",
"automatic_email_backups" : "Automatic Email Backups",
"automatic_email_backups_description" : "Check this to receive a new backup automatically when your wallet updates:",
"local_currency" : "Local Currency",
"local_currency_description" : "You can quickly switch between bitcoins and your local currency by clicking your balance in the top right.",
"language" : "Language",
"language_description" : "Set your preferred language below",
"fee_policy" : "Default Fee Policy",
"fee_policy_description" : "Blockchain.info transactions are free of charge. However the bitcoin network may require an additional Miners Fee which effects the speed your transactions are verified and helps support the network. Change the settings below to alter the default Miners Fee Policy.",
"fee_policy_low" : "Frugal",
"fee_policy_low_description" : "A Miners fee will not be included unless absolutely essential.",
"fee_policy_low_warning" : "Transactions will be significantly slower to confirm",
"fee_policy_normal" : "Normal",
"fee_policy_normal_description" : "Follow the fee policy suggested by the mainline bitcoin client.",
"fee_policy_high" : "Generous",
"fee_policy_high_description" : "Fees will be set to ensure transactions are high priority (0.001 BTC Base Fee).",
"integrity_check" : "Integrity Check",
"integrity_check_description" : "Checks all keys in your wallet match the correct bitcoin address and re-encrypts your wallet. This may take a long time in some browsers.",
"integrity_check_run" : "Run Check",
"notifications" : "Notifications",
"notifications_description" : "Optionally receive notifications when a payment is sent or received from your wallet.",
"email_notifications" : "Email Notifications",
"email_notifications_description" : "You will receive notifications via email. Please confirm your email address if you haven't already.",
"sms_notifications" : "SMS Notifications",
"google_talk" : "Google Talk",
"google_talk_description" : "You will receive notifications via Google Talk.",
"skype" : "Skype",
"skype_description" : "You will receive notifications via Skype to the username below:",
"boxcar_description_p1" : "Please enter your",
"boxcar_description_p2" : "email below:",
"notifications_when" : "When My Wallet",
"notifications_when_both" : "Sends or Receives Bitcoins",
"sends" : "Sends Bitcoins",
"receives" : "Receives Bitcoins",
"notifications_confirmations" : "After Confirmations",
"instantly" : "Instantly",
"one_confirmation" : "1 Confirmation",
"two_confirmations" : "2 Confirmations",
"three_confirmations" : "3 Confirmations",
"four_confirmations" : "4 Confirmations",
"five_confirmations" : "5 Confirmations",
"six_confirmations" : "6 Confirmations",
"device_pairing" : "Device Pairing",
"device_pairing_description" : "Scan the code below with your iPhone or Android device to pair it with your account.",
"forgot_password_warning" : "Warning!",
"forgot_password_warning_p2" : "Any forgotten passwords will result in your wallet being un-accessible. There is no password recovery process!",
"password_notice" : "Your password is never shared with our servers in any shape or form. This means your wallet would still be safe in the event our servers were hacked. It also prevents us from viewing your account balance or transaction history.",
"main_password" : "Main Password",
"password" : "Password:",
"confirm_password" : "Confirm Password:",
"update_main_password" : "Update Main Password",
"second_password" : "Second Password",
"second_password_description" : "You may optionally set a second password which will be required when send funds from your account. For large wallets your browser may become unresponsive for a few minutes when changing this option.",
"enable_double_encryption" : "Enable Double Encryption",
"double_encryption_enabled" : "Double encryption is enabled. A second password will be required before you can send funds.",
"disable_double_encryption" : "Disable Double Encryption",
"password_hints" : "Password Hints",
"password_hints_description" : " If you forget your password(s) hints can be useful to help jog your memory. If there is an email address associated with your account hints can be emailed to you. If no email is associated with your account hints are available to anyone who knows your wallet identifier.",
"for_example" : "For example:",
"example_password" : "If your wallet password was: HorseBatteryStaple a good password hint would be: Electric horse?",
"main_password_hint" : "Main Password Hint:",
"second_password_hint" : "Second Password Hint:",
"two_factor_authentication" : "Two Factor Authentication",
"two_factor_authentication_description" : "Two factor authentication adds an additional layer of security on top of your password.",
"none" : "None",
"sms_message" : "SMS Message",
"two_factor_authentication_not_enabled" : "Two factor authentication is not enabled on your account",
"yubikey_description" : "To pair your key with your account select the text box below and press the green LED button on your yubikey device.",
"email_description" : "Two factor authentication via email is enabled on your account. An email will be sent to {0} containing a confirmation code which will need to be provided at login.",
"google_authenticator_description" : "Open the Google Authenticator app and scan the QR code below to complete the pairing process.",
"google_authenticator_warning" : "You maybe locked out of your account if you leave this page without pairing with the mobile app or disabling Google Authenticator.",
"secret_phrase" : "Secret Phrase",
"secret_phrase_description" : "A secret phrase can be used to help us verify your identity in case of a lost wallet identifier or yubikey. It can be a single word or sentence up to 255 characters in length.",
"never_remember_two_factor" : "Never Remember Two Factor Login",
"never_remember_two_factor_description" : "By Default after logging in with two factor authentication your browser will be remembered for a short period of time allowing you to login again without having to re-authenticate. Check this if you want to disable this behaviour and require full authentication every time.",
"enable_disable" : "Enable / Disable:",
"my_wallet_verifier" : "My Wallet Verifier",
"my_wallet_verifier_description" : "If you are concerned about security we highly recommend you install the {0} browser extension. The My Wallet verifier can help protect against server side hacking, malicious javascript and phishing attacks.",
"restrict_to_ip" : "Restrict To IP",
"restrict_to_ip_description" : "Enable this to restrict access to your wallet to a specific ip address or multiple ip addresses comma separated. Only enable this if you have a static ip address. You will not be able to login or access any API's from any computers not on the specified network however the mobile apps will continue to function once paired.",
"lock_to_ip" : "Lock To IP:",
"multiple_ip_comma_seperated" : "Multiple ip addresses should be comma separated.",
"current_ip" : "Current IP:"
},
"wallet_home" : {
"total_transactions" : "Total Transactions",
"total_received" : "Total Received",
"total_sent" : "Total Sent",
"final_balance" : "Final Balance",
"this_is_your_bitcoin_address" : "This Is Your Bitcoin Address",
"share_with_anyone" : "Share this with anyone and they can send you payments.",
"deposit" : "Deposit",
"deposit_description" : "The quickest and easiest way to deposit bitcoins into your account is to use the services below.",
"cash_deposit" : "Cash Deposit",
"pingit_deposit" : "PingIt Deposit",
"phone_deposit" : "Phone Deposit",
"withdraw" : "Withdraw",
"withdraw_description" : "Use the services below to convert bitcoins back into you local currency.",
"btcpak_withdraw" : "BTCPak Withdraw",
"pingit_withdraw" : "PingIt Withdraw",
"backup" : "Backup",
"account_settings" : "Account Settings",
"account_settings_description" : "Edit your account settings including email address, password and notification settings.",
"account_settings_btn" : "Account Settings",
"backup_description" : "Backing up your wallet is an important step which is easy to forget. Blockchain.info takes every precaution to keep your wallet safe but it's always better to keep a local copy just in case."
},
"receive_money" : {
"header" : "Addresses",
"sub_header" : "Your receiving bitcoin addresses",
"active" : "Active",
"archived" : "Archived",
"anonymous" : "Anonymous",
"address" : "Address",
"balance" : "Balance",
"new_address" : "New Address",
"new_address_tooltip" : "Click here to generate a new bitcoin address. You can begin receiving bitcoins into this address immediately",
"more_actions" : "More Actions",
"chord_diagram" : "View Relationship Diagram",
"group_by_taint" : "Group Addresses By Taint",
"verify_message" : "Verify Message",
"archived_addresses" : "Archived Addresses",
"archived_addresses_description" : "Archived addresses are addresses you may not need anymore that are hidden from the main view but still part of your wallet. You can un-archive them at any time by clicking the blue icon.",
"bitcoin_address" : "Bitcoin Address",
"sweep_keys" : "Sweep Keys",
"sweep_keys_tooltip" : "Move any bitcoins in the selected keys to a different bitcoin address.",
"delete_keys" : "Delete Keys",
"delete_keys_tooltip" : "Delete the selected private keys.",
"anonymous_addresses" : "Anonymous Addresses",
"anonymous_addresses_description" : "Payments received to anonymous addresses will be forwarded to another address in your wallet. Any payments received are sent through the a mixer isolating your personal wallet from the sender. Transactions received to anonymous addresses cannot be linked to your regular wallet.",
"more_info" : "More Info",
"anonymous_addresses_description2" : "Anonymous Addresses are valid for one transaction only and incur a 1.5% transaction fee.",
"forward_to" : "Forward To",
"expires_in" : "Expires In",
"new_anonymous_address" : "New Anonymous Address"
},
"login" : {
"lost_two_factor" : "Lost or forgotten two factor authentication details?",
"two_factor_reset" : "Two Factor Authentication Reset",
"welcome_back" : "Welcome Back",
"please_enter_login_details" : "Please enter your login details below:",
"identifier" : "Identifier:",
"identifier_placeholder" : "Identifier or Alias",
"password" : "Password:",
"google_authenticator" : "Google Authenticator:",
"google_authenticator_help" : "Please open your Google Authenticator app and enter the code displayed.",
"yubikey_help" :"Select the text box above and press the green LED light on your Yubikey.",
"email_code" : "Email Code:",
"email_code_help" : "An email containing a temporary confirmation code has been sent to your account.",
"sms_code" : "SMS Code:",
"sms_code_help" : "A text message has been sent to your cell phone. Please enter the code in that message above.",
"open_wallet" : "Open Wallet",
"password_unrecoverable_warning" : "Your password is never shared with our servers and cannot be recovered if forgotten!",
"resend_link_title" : "Can't find your email code?",
"resend_link_p1" : "The email will be sent from [email protected]. Be sure to check your spam folder. If you still can't find the email click the button below to resend it.",
"resend_link_btn" : "Resend Link",
"forgotten_something" : "Forgotten Something?",
"forgotten_something_sub" : "Help! I've locked myself out of my account",
"lost_identifier_title" : "Lost Identifier or Alias",
"lost_identifier_p1" : " If you have lost your wallet identifier first check the confirmation email you received during sign up. Can't find the email? Click the button below and we can send you a new one.",
"forgotten_identifier_btn" : "Forgotten Identifier",
"lost_two_factor_title" : "Lost Two-factor Authentication Details.",
"lost_two_factor_p1" : "If you have lost your two factor authentication details your wallet is still fully recoverable. All we need is reasonable proof you are the account owner which can be provided by completing the form linked below.",
"lost_two_factor_btn" : "Reset Two Factor Authentication",
"lost_password" : "Lost Password",
"lost_password_p1" : "Your wallet is encrypted by your browser before it reaches us and for this reason we are unable to help recover lost passwords. To avoid any possible monetary loss due to forgotten passwords it is recommended you make a paper backup of your wallet's private keys.",
"password_hints_btn" : "Password Hints",
"need_help" : "Need Help?",
"need_help_p1" : "Read our {0}",
"support_pages" : "Support Pages"
},
"transactions" : {
"header" : "Transactions",
"sub_header" : "Summary of your recent transactions",
"compact" : "Compact",
"detailed" : "Detailed",
"all" : "All",
"sent" : "Sent",
"received" : "Received",
"escrow" : "Escrow",
"no_transactions" : "Normally your bitcoin transactions would be listed here but you have not made any yet."
},
"send_coins" : {
"transaction_types" : "Transaction Type",
"quick_send" : "Quick Send",
"custom" : "Custom",
"anonymous" : "Anonymous",
"escrow" : "Escrow",
"send_via" : "Send Via",
"email" : "Email",
"sms_message" : "SMS Message",
"games" : "Games",
"tools" : "Tools",
"address_book" : "Address Book",
"quick_send" : "Quick Send",
"quick_send_sub" : "Use the form below to send a payment to a bitcoin address.",
"to_address" : "To Address",
"to_address_tooltip" : "This is the Bitcoin Address of the recipient.",
"to" : "To:",
"to_address_placeholder" : "Bitcoin Address",
"to_address_help" : "Enter The Bitcoin Address of the Recipient",
"amount" : "Amount",
"amount_tooltip" : "The Amount in Bitcoins to Send",
"amount_help" : "Enter The Amount of Bitcoins to send",
"send_payment" : "Send Payment",
"send_payment_tooltip" : "Click Here to send payment. You will not be asked to review the transaction.",
"send_via_sms" : "Send Via SMS",
"send_via_sms_sub" : "Use the form below to send bitcoin's via SMS.",
"sms_number" : "SMS Number",
"sms_number_tooltip" : "Enter the SMS number of the person you want to send bitcoins to.",
"sms_number_help" : "Enter The SMS Number of the Recipient.",
"send_via_email" : "Send Via Email",
"send_via_email_sub" : "Use the form below to send bitcoin's to an email address.",
"email_address" : "Email Address",
"email_address_tooltip" : "This is the email address of the person you wish to send bitcoins to.",
"email_address_help" : "Enter The Email Address of the Recipient",
"send_anonymously" : "Send Anonymously",
"send_anonymously_sub" : "Use Send Anonymously to guarantee the transaction cannot be traced between sender and receiver.",
"send_anonymously_total" : "Including fees the total of this transaction is {0}",
"send_anonymously_bonus" : "The mixer is currently paying a bonus for fresh coins. There will be no fees for this transaction and a bonus of {0} BTC will be paid.",
"send_anonymously_free" : "The mixer is currently free of charge.",
"review_payment" : "Review Payment",
"review_payment_tooltip" : "Click Here to review payment. You will be able to confirm or cancel the transaction.",
"anonymous_transaction_fees" : "All Anonymous transactions incur a {0}% Fee.",
"custom_transaction" : "Custom Transaction",
"custom_transaction_sub" : "Use the form below to send a payment to one or more bitcoin addresses. You will be asked review your transaction before submission.",
"from_address" : "From Address",
"from_address_tooltip" : "If required you can choose to send coins from a specific address in your wallet.",
"from" : "From:",
"remove_recipient" : "Remove Recipient",
"remove_recipient_tooltip" : "Remove the last recipient.",
"add_recipient" : "Add Recipient",
"add_recipient_tooltip" : "If you want to send bitcoins to multiple recipients at once click here to add another address",
"miners_fee" : "Miners Fee",
"miners_fee_tooltip" : "This fee will be sent to the bitcoin miners and can help your transaction be processed faster",
"change_address" : "Change Address",
"change_address_tooltip" : "Any Change From The Transaction will be sent back to this address",
"public_note" : "Public Note",
"public_note_tooltip" : "Add a note to this transaction which will be viewable on blockchain.info.",
"public_note_placeholder" : "This message will be permanently embedded in the blockchain. Anyone can read it.",
"reset_form" : "Reset Form",
"satoshi_dice_header" : "Bet With SatoshiDICE",
"satoshi_dice_sub" : "{0} is the most popular bitcoin betting game. Win up to 64,000x your bet, instantly. All rolls are verifiable using the blockchain.",
"place_bet" : "Place Bet!",
"not_affiliated" : "Blockchain.info is not affiliated with {0}.",
"summary" : "Summary:",
"number_of_bets" : "Number of Bets:",
"winnings" : "Winnings:",
"refresh" : "Refresh",
"pending" : "Pending",
"btcdice_header" : "Bet With BTCDice",
"btcdice_sub" : "{0} - Choose the odds, place a bet and receive your winnings back in seconds.",
"send_via_facebook" : "Send Via Facebook",
"send_via_facebook_sub" : "Use the form below to send bitcoin's to a facebook friend.",
"facebook_help" : "Enter The Name of the facebook recipient",
"address_book" : "Address Book",
"address_book_sub" : "The address book contains a list of sending addresses. You can use it to store the bitcoin addresses of people you know or merchants you use frequently.",
"add_new_entry" : "Add New Entry"
},
"import_export" : {
"advanced_warning_title" : "Advanced Warning!",
"advanced_warning_sub" : "This section allows you to make changes to your wallet which can be complicated and confusing. It is recommended only experienced Bitcoin Users proceed from here. You should have an understanding of what private keys are and how they relate to bitcoin addresses.",
"advanced_warning_continue" : "I Understand",
"import_export" : "Import / Export",
"import_menu" : "Import",
"import_backup" : "Import Backup",
"export_encrypted" : "Export Encrypted",
"export_unencrypted" : "Export Unencrypted",
"desktop_sync" : "Desktop Sync",
"paper_wallet" : "Paper Wallet"
},
"modals" : {
"cancel" : "Cancel",
"close" : "Close",
"continue_btn" : "Continue",
"save" : "Save",
"send" : "Send",
"second_password_needed" : "Second Password Needed",
"second_password_p1" : "This action requires that you enter your second password which is needed fully decrypt your wallet. You should never enter your second password on an untrusted computer. Use the onscreen keyboard to provide some protection from keyloggers.",
"transaction_information" : "Transaction Information",
"first_seen" : "First Seen",
"last_seen" : "Last Seen",
"first_relayed" : "First Relayed",
"nodes_connected" : "Nodes Connected",
"total_relayed" : "Total Relayed",
"network_percent" : "% Of Network",
"mining_pools" : "Mining Pools",
"label_address" : "Label Address",
"label_address_p1" : "Please enter a label for address {0}",
"label" : "Label:",
"label_placeholder" : "Label e.g. Savings",
"label_help" : "A label is used to help you remember what this address is for. It can be the name of a person or company.",
"sign_message" : "Sign Message",
"sign_message_sub" : "Use this tool to sign a message which proves that you own an address. Only Sign Detailed Messages you fully agree with, never sign vague messages. Pressing Sign Message may cause your browser to become unresponsive for a few seconds.",
"address" : "Address:",
"address_placeholder" : "Bitcoin Address",
"message" : "Message:",
"message_placeholder" : "Enter the Message You Wish To Sign",
"signature" : "Signature:",
"verify_message" : "Verify Message",
"verify_message_p1" : "Use this tool verify a message signed by the owner of a particular bitcoin address",
"verify_message_placeholder" : "Enter the Message To Verify",
"verify_signature_placeholder" : "Enter the Signature To Verify",
"verify_result" : "This message was signed by address {0}. <br /> Does this match the address you were expecting?",
"address_qr_code" : "Address QR Code",
"add_address_book_entry" : "Add Address Book Entry",
"add_address_book_entry_placeholder" : "Enter the Bitcoin Address you wish to add to your address book.",
"address_book_label_placeholder" : "Name of person or merchant",
"address_book_label_help" : "Enter the Label for this address. e.g. the name of the person or company name.",
"add_address" : "Add Address",
"address_not_synced" : "Address Not Saved",
"address_not_synced_p1" : "You are receiving this warning because you have copied an address which has not been yet been synced to the clipboard.",
"address_not_synced_p1" : "This Address has not been saved on our servers yet and maybe lost after leaving this page.",
"watch_only_warning" : "Watch Only Address Warning",
"watch_only" : "Watch Only",
"watch_only_warning_p1" : "You are receiving this warning because you have copied a {0} address to the clipboard.",
"watch_only_warning_p2" : "A {0} address means you can only observe the transactions at this address. Unless you have the private key saved elsewhere then you do not own the funds at this address.",
"watch_only_warning_p3" : "If you do not have a paper wallet or other backup you should not withdraw coins to this address or instruct anyone to send you coins at this address",
"add_watch_only_address" : "Add Watch Only Bitcoin Address",
"add_watch_only_address_p1" : "Please Confirm you would to add the {0} address {1}.",
"add_watch_only_address_p3" : "If you are not clear on the difference between a bitcoin address and a private key then this is probably not the option you want.",
"confirm_delete" : "Confirm Delete",
"confirm_delete_warning" : "Deleting an incorrect address will cause financial loss. If you are not sure what you are doing press cancel now",
"confirm_delete_p1" : "Are you sure would like to remove the address? You will no longer be able to send or receive bitcoins from this address. The balance of this address is:",
"confirm_delete_countdown" : "You have {0} seconds to change your mind...",
"delete_private_key_only" : "Delete Private Key Only",
"delete_both" : "Delete Address and Private Key",
"sweep_keys" : "Sweep Keys",
"sweep_keys_p1" : "Sweep means to move all available funds in one or more addresses to another address. Please choose an address where you would like to sweep the selected addresses (Balance {0}).",
"sweep_to" : "Sweep To:",
"ask_for_anonymous" : "Send Anonymously?",
"ask_for_anonymous_p1" : "Our bitcoin mixer needs your coins. Send this transaction anonymously and get a{0}% bonus</b> ({1} BTC will be sent back to the sending address). The transaction will incur a delay of approximately {2}.",
"ask_for_anonymous_warning" : "Do not accept if you expect to receive payment back to the sending address. Anonymous transactions are incompatible with SatoshiDICE, BitLotto and many other bitcoin games.",
"never_ask_again" : "Never ask me again.",
"continue_without" : "Continue Without",
"miners_fee_recommended" : "Miners Fee Recommended",
"miners_fee_recommended_p1" : "This transaction is low priority. It is recommended you include at least a 0.0005 BTC transaction fee in order to ensure miners process it.",
"miners_fee_recommended_warning" : "If you do not include a fee this transaction may take a long time to get confirmed. Any funds will be returned to you in approximately 24 hours.",
"continue_without_fee" : "Continue Without Fee",
"add_fee" : "Add Fee",
"password_change" : "Confirm Password Change",
"password_change_p1" : "Your password will be updated immediately. Be sure to make a note of the new password as it cannot be recovered if forgotten! If you have any encrypted wallet backups it will be possible to decrypt them using your old password, it is recommended you remove any of these backups.",
"update_password" : "Update Password",
"creating_transaction" : "Creating Transaction",
"created_offline_p1" : "Your transaction has been created successfully but has not yet been broadcast to the p2p network.",
"offline_instructions" : "To complete the transaction open {0}. Copy and paste the text below into the textarea and press submit to complete the transaction.</p>",
"signing_please_wait" : "Please Wait. Signing Input Number {0} out of {1}...",
"please_confirm" : "Please confirm you would like to {0}",
"please_check_details" : "Please check the details below:",
"hash" : "Hash",
"version" : "Version",
"inputs" : "Inputs",
"outputs" : "Outputs",
"total_fees" : "Total Fees",
"total_output_value" : "Total Output Value",
"leaving_wallet" : "Leaving Wallet",
"send_transaction" : "Send Transaction",
"compressed_private_key" : "Compressed Private Key Detected",
"compressed_private_key_p1" : "Compressed private keys are currently not supported using the Android app, iPhone app or Merchant API. If you import a compressed private key directly you will not be able to spend the funds at that address using the previously listed devices.",
"compressed_private_key_p2" : "The recommended solution to to sweep the funds into a existing bitcoin address. Would you like to sweep this private key instead?",
"sweep_key" : "Sweep Key",
"import_directly" : "Import Directly",
"send_via_email" : "Send Via Email",
"send_via_email_h3" : "Send {0} BTC to {1}",
"send_via_email_sub" : "The following message will be sent to the recipient.",
"send_payment" : "Send Payment",
"claim_title" : "You have received bitcoins!",
"claim_p1" : "Please choose one of the options below to claim your bitcoins. Until claimed the sender is able to reverse this payment.",
"claim_zero_balance" : "The balance of this bitcoin address is zero. The payment may have already been claimed or the transaction was reversed by the sender.",
"claim_to_desktop" : "Enter the bitcoin address of your desktop client:",
"claim_desktop_placeholder" : "Your Bitcoin Address",
"forward_to_client" : "Forward To Desktop Client",
"create_new_wallet" : "Create A New Wallet",
"login_to_my_wallet" : "Login To My Wallet",
"private_key_needed" : "Private Key Needed",
"private_key_needed_p1" : "This action requires the private key of bitcoin address {0}. Please enter the private key below.",
"enter_manually" : "Enter Manually",
"scan_using_webcam" : "Scan Using Webcam",
"enter_private_key" : "Enter Private Key"
},
"errors" : {
"account_locked" : "This account has been locked",
"login_attempts_left" : "{0} login attempts left",
"account_locked_for_minutes" : "Account is locked for another {0} minutes.",
"unknown_identifier" : "Unknown Wallet Identifier. Please check you entered it correctly.",
"authentication_code_incorrect" : "Authentication code is incorrect",
"authentication_code_used_already" : "This authentication code has been used before",
"authentication_code_invalid" : "Invalid authentication code",
"error_validating_yubikey" : "Error Validating Yubikey",
"account_locked_to_another_ip" : "This Account Is Locked To Another IP Address.",
"error_creating_two_factor_reset_request" : "Error creating two factor authentication reset request",
"mobile_identifier_not_found" : "Wallet identifier not found. Your wallet is not yet saved on our server yet. Please setup a new account to avoid losing your wallet.",
"email_address_invalid" : "Email Address Invalid",
"email_not_found" : "Email Not Found",
"wallet_identifier_not_found" : "Wallet Identifier Not Found",
"password_hints_not_set" : "Password Hints Have Not Been Set For This Wallet",
"error_sending_password_hints" : "Unknown Error Sending Password Hints",
"two_factor_authentication_request_declined" : "Two Factor authentication Reset Request Declined",
"error_saving_to_dropbox" : "Error Saving to Dropbox",
"error_saving_to_google_drive" : "Error Saving to Google Drive",
"session_expired" : "Session Expired",
"unauthorized" : "Unauthorized",
"error_unsubscribing" : "Wallet identifier or email code were incorrect. You have not been unsubscribed",
"payload_null" : "Serious Error! Payload seems to be Null",
"error_sending_sms_code" : "There was an error sending your SMS two factor authentication code.",
"two_factor_enabled_no_email" : "Two factor Authentication is enabled but you have not added an email.",
"two_factor_enabled_email_not_verified" : "Two factor Authentication is enabled but you have not verified your email.",
"reached_email_limit" : "You have reached your email limit for today (Maximum {0} emails)",
"error_sending_two_factor_email" : "There was an error sending the two factor authentication code email",
"invalid_length" : "Length parameter must be numerical",
"invalid_payload" : "Invalid Payload",
"captcha_incorrect" : "Captcha Code Incorrect",
"wallet_size_restricted" : "Wallets are restricted to 1MB in size",
"error_saving_wallet" : "Error saving wallet",
"checksum_invalid" : "Checksum did not validate",
"error_updating_ip_lock" : "Error Updated IP Lock",
"checksum_reread_failed" : "Wallet was updated, however checksum did not validate on re-read! This is a serious error, please contact {0}",
"invalid_ip_address" : "Invalid IP Address",
"error_updating_ip_address" : "Error Updating Ip Addresses",
"error_updating_notification_settings" : "Error updating notifications settings",
"error_updating_two_factor_authentication" : "Error updating two factor authentication.",
"error_generating_google_secret" : "Error Generating Google Authenticator Secret",
"error_updating_skype" : "Error updating Skype username",
"invalid_email" : "Invalid Email",
"error_updating_email" : "Error Updating Email",
"error_updating_password_hint" : "Error Updating Password Hint",
"error_updating_yubikey" : "Error updating yubikey",
"sms_number_in_use" : "This Mobile Number is already associated with another wallet",
"error_generating_auth_code" : "Error Generating Authentication Code",
"error_updating_sms" : "Error updating SMS number",
"email_code_incorrect" : "Email Verification Code Incorrect",
"sms_code_incorrect" : "SMS Verification Code Incorrect.",
"email_updated_eror_sending_link" : "Email updated. However an error was encountered when sending confirmation link.",
"failed_to_get_wallet" : "Failed to get wallet object.",
"error_updating_secret_phrase" : "Error updating secret phrase",
"error_updating_auto_backup" : "Error Updating Automatic Email Backup Settings",