-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.html
2600 lines (2151 loc) · 147 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bitcoin Signer Wallet-Free-Open Source,Crypto cold address,sign transaction offline,DEFI,DAPP,Litecoin,Dogecoin wallet-explorer</title>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<meta name="keywords" content="bitcoin, wallet, multisig, multisignature, address, browser, segwit, javascript, js, broadcast, transaction, verify, decode" />
<meta name="description" content="A Bitcoin Wallet written in Javascript. Supports Multisig, SegWit, Custom Transactions, nLockTime and more!" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/bootstrap.min.css" media="screen">
<link rel="stylesheet" href="css/bootstrap-datetimepicker.min.css">
<link rel="stylesheet" href="css/style.css" media="screen">
<script type="text/javascript" src="js/jquery-1.9.1.min.js"></script>
<script type="text/javascript" src="js/moment.min.js"></script>
<script type="text/javascript" src="js/transition.js"></script>
<script type="text/javascript" src="js/collapse.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/bootstrap-datetimepicker.min.js"></script>
<script type="text/javascript" src="js/crypto-min.js"></script>
<script type="text/javascript" src="js/crypto-sha256.js"></script>
<script type="text/javascript" src="js/crypto-sha256-hmac.js"></script>
<script type="text/javascript" src="js/sha512.js"></script>
<script type="text/javascript" src="js/ripemd160.js"></script>
<script type="text/javascript" src="js/aes.js"></script>
<script type="text/javascript" src="js/qrcode.js"></script>
<script type="text/javascript" src="js/qcode-decoder.min.js"></script>
<script type="text/javascript" src="js/jsbn.js"></script>
<script type="text/javascript" src="js/ellipticcurve.js"></script>
<script type="text/javascript" src="js/coin.js"></script>
<script type="text/javascript" src="js/signer.js"></script>
<script type="text/javascript">
var arrLang = {
'zh': {
'1.Create Transaction': '1.新建交易',
'2.Sign': '2.签名',
'3.Broadcast': '3.广播',
'Chain Settings': '设置',
'IOS': '苹果系统',
'How to use': '使用教程',
'Tools': '工具',
'Help': '帮助',
'Transaction': '新建交易',
'Use this page to create a raw transaction': '新建一笔交易',
'Your Address, WIF key, Redeem Script or Transaction ID': '您的钱包地址',
'Recipient Address': '接收者地址',
'Amount': '数量',
'Load': '加载',
'Advanced Options': '高级选项',
'Transaction Fee(Min:0.000001)': '交易费(最低:0.000001)',
'Create Transaction': '创建交易',
'Sign Transaction': '签名交易信息',
'Recommended offline': '推荐离线使用该功能',
'Private key': '私钥',
'Show/Hide': '显示/隐藏',
'Language': '语言',
'Sign Transaction Info': '为了防止私钥在网络上暴露,建议在未连接互联网的安卓、苹果或电脑设备上进行签名,实现离线签名。',
'Broadcast Your Transaction': '广播您的交易',
'into the Blockchain!': '到区块链!',
'Please enter the signed transaction code:': '请输入签名后的交易编码。',
'Settings': '设置',
'The first transaction will returned to you as change': '第一笔交易将作为找零退还给您。',
'The transaction below has been generated and encoded. It can be broadcasted once it has been signed.': '下面的交易已经生成并编码。一旦签名就可以广播。',
'Sign': '签名',
'Broadcast': '广播',
'The above transaction has been signed:': '上面的交易已签署:',
'Signed transaction': '已签署的交易',
'Send your Bitcoin in the safest way.': '以最安全的方式发送您的比特币。',
'100% Free,Open Source!Offline signature, the most secure Bitcoin transfer method': '100%免费、开源!离线签名,最安全的比特币转账方式',
'Start': '开始',
'Download the project file,unzip,then you can run the index.html locally with any browser on Windows,Linux,MAC OS...': '下载项目文件,解压,然后您可以在Windows、Linux、MAC OS 上的任何浏览器本地运行index.html...',
'Choose the cryptocurrency you want to use.': '选择您想要使用的加密货币。',
'1:Create transaction': '1:创建交易',
'2:Sign transaction,It is recommended to sign on an offline device.': '2:签名交易,建议在离线设备上签名。',
'3:Broadcast transaction': '3:广播交易',
'Donate Bitcoin:': '捐赠比特币:',
'Run on iPhone/iPad': '在iPhone/iPad上运行',
'on Windows,MAC,Linux,we just run index.html in browser online or offline,it doesnt need any addtional install.': '在Windows、MAC、Linux上,我们只需在浏览器中在线或离线运行index.html,不需要任何额外的安装。',
'You need prepare a MAC computer in order to transfer project files through airpdrop.': '您需要准备一台MAC电脑才能通过空投传输项目文件。',
'1.This project is HTML+JS, so we need download a HTML viewer from Appstore.you can also use other html viewer APP in APPStore': '1.本项目是HTML+JS,所以我们需要从Appstore下载一个HTML查看器。您也可以使用APPStore中的其他html查看器APP',
'2.drag project folder to our iPhone/iPad through Airdrop': '2.通过Airdrop将项目文件夹拖到我们的iPhone/iPad上',
'3.save folder to HTML Viewer': '3.将文件夹保存到HTML查看器',
'4.tab folder icon in HTML Viewer APP': '4.HTML Viewer APP中的tab文件夹图标',
'5.find index.html,and tab it.': '5.找到index.html,然后选择它。',
'6.Now we can run Signer on our iPhone and iPad Successfully!': '6.现在我们可以在iPhone和iPad上成功运行Signer了!',
'Tips:iPhone camera can directly scan QR codes offline': '温馨提示:iPhone相机可以直接离线扫描二维码',
'7.If you want to sign offline, just turn on airplane mode.': '7.如果您想离线签名,只需打开手机的飞行模式即可。',
'8.Still worried?turn off the WIFI permit of APP.': '8.还是有所担心?关闭这个APP的WIFI权限',
},
'es': {
'1.Create Transaction': '1.Crear Transacción',
'2.Sign': '2.Firmar',
'3.Broadcast': '3.Transmitir',
'Chain Settings': 'Configuración de la Cadena',
'IOS': 'IOS',
'How to use': 'Cómo utilizar',
'Tools': 'Herramientas',
'Help': 'Ayuda',
'Transaction': 'Transacción',
'Use this page to create a raw transaction': 'Use esta página para crear una transacción en bruto',
'Your Address, WIF key, Redeem Script or Transaction ID': 'Su dirección, clave WIF, script de redención o ID de transacción',
'Recipient Address': 'Dirección del destinatario',
'Amount': 'Cantidad',
'Load': 'Cargar',
'Advanced Options': 'Opciones Avanzadas',
'Transaction Fee(Min:0.000001)': 'Tarifa de Transacción (Mín: 0.000001)',
'Create Transaction': 'Crear Transacción',
'Sign Transaction': 'Firmar Transacción',
'Recommended offline': 'Recomendado sin conexión',
'Private key': 'Clave privada',
'Show/Hide': 'Mostrar/Ocultar',
'Language': 'Idioma',
'Sign Transaction Info': 'Para evitar exponer la clave privada en la red, se recomienda firmar la transacción en un dispositivo Android, iOS o una computadora sin conexión a Internet, lo que permite una firma sin conexión.',
'Broadcast Your Transaction': 'Transmitir su transacción',
'into the Blockchain!': '¡en la Blockchain!',
'Please enter the signed transaction code:': 'Ingrese el código de transacción firmado:',
'Settings': 'Configuración',
'The first transaction will returned to you as change': 'La primera transacción se le devolverá como cambio',
'The transaction below has been generated and encoded. It can be broadcasted once it has been signed.': 'La transacción a continuación ha sido generada y codificada. Se puede transmitir una vez que ha sido firmada.',
'Sign': 'Firmar',
'Broadcast': 'Transmitir',
'The above transaction has been signed:': 'La transacción anterior ha sido firmada:',
'Signed transaction': 'Transacción firmada',
'Send your Bitcoin in the safest way.': 'Envía tus Bitcoin de la manera más segura.',
'100% Free,Open Source!Offline signature, the most secure Bitcoin transfer method': '100% Gratis, de código abierto. Firma sin conexión, el método de transferencia de Bitcoin más seguro.',
'Start': 'Comenzar',
'Download the project file,unzip,then you can run the index.html locally with any browser on Windows,Linux,MAC OS...': 'Descarga el archivo del proyecto, descomprímelo y luego puedes ejecutar el index.html localmente con cualquier navegador en Windows, Linux, MAC OS...',
'Choose the cryptocurrency you want to use.': 'Elige la criptomoneda que quieres usar.',
'1:Create transaction': '1: Crear transacción',
'2:Sign transaction,It is recommended to sign on an offline device.': '2: Firmar transacción. Se recomienda firmar en un dispositivo sin conexión.',
'3:Broadcast transaction': '3: Transmitir transacción',
'Donate Bitcoin:': 'Donar Bitcoin:',
'Run on iPhone/iPad': 'Ejecutar en iPhone/iPad',
'on Windows,MAC,Linux,we just run index.html in browser online or offline,it doesnt need any addtional install.': 'En Windows, MAC, Linux, simplemente ejecutamos index.html en el egador en línea o fuera de línea, no necesita ninguna instalación adicional.',
'You need prepare a MAC computer in order to transfer project files through airpdrop.': 'Necesitas preparar una computadora MAC para transferir los archivos del proyecto mediante AirDrop.',
'1.This project is HTML+JS, so we need download a HTML viewer from Appstore.you can also use other html viewer APP in APPStore': '1. Este proyecto es HTML+JS, por lo que necesitamos descargar un visor HTML desde la App Store. También puedes usar otra aplicación visor HTML en la App Store.',
'2.drag project folder to our iPhone/iPad through Airdrop': '2. Arrastra la carpeta del proyecto a nuestro iPhone/iPad mediante AirDrop.',
'3.save folder to HTML Viewer': '3. Guarda la carpeta en el visor HTML.',
'4.tab folder icon in HTML Viewer APP': '4. Toca el icono de la carpeta en la aplicación visor HTML.',
'5.find index.html,and tab it.': '5. Encuentra index.html y tócalo.',
'6.Now we can run Signer on our iPhone and iPad Successfully!': '6. ¡Ahora podemos ejecutar Signer en nuestro iPhone y iPad correctamente!',
'Tips:iPhone camera can directly scan QR codes offline': 'Consejo: la cámara del iPhone puede escanear códigos QR directamente sin conexión.',
'7.If you want to sign offline, just turn on airplane mode.': '7.Si deseas firmar sin conexión, simplemente activa el modo avión.',
'8.Still worried?turn off the WIFI permit of APP.': '8.¿Todavía preocupado? Desactiva el permiso de WIFI de la aplicación.',
},
'hi': {
// Hindi translations
'1.Create Transaction': '1.लेन-देन बनाएं',
'2.Sign': '2.हस्ताक्षर',
'3.Broadcast': '3.प्रसारण',
'Chain Settings': 'श्रृंखला सेटिंग्स',
'IOS': 'आईओएस',
'How to use': 'कैसे उपयोग करें',
'Tools': 'उपकरण',
'Help': 'सहायता',
'Transaction': 'लेन-देन',
'Use this page to create a raw transaction': 'एक कच्चे लेन-देन को बनाने के लिए इस पेज का उपयोग करें',
'Your Address, WIF key, Redeem Script or Transaction ID': 'आपका पता, WIF कुंजी, रिडीम स्क्रिप्ट या लेन-देन आईडी',
'Recipient Address': 'प्राप्तकर्ता का पता',
'Amount': 'राशि',
'Load': 'लोड करें',
'Advanced Options': 'उन्नत विकल्प',
'Transaction Fee(Min:0.000001)': 'लेन-देन शुल्क (न्यूनतम: 0.000001)',
'Create Transaction': 'लेन-देन बनाएं',
'Sign Transaction': 'लेन-देन हस्ताक्षर',
'Recommended offline': 'ऑफ़लाइन का सिफ़ारिश किया गया',
'Private key': 'निजी कुंजी',
'Show/Hide': 'दिखाएँ/छिपाएँ',
'Language': 'भाषा',
'Sign Transaction Info': 'निजी कुंजी को नेटवर्क पर उजागर करने से बचने के लिए, आपको साइन करने के लिए एंड्रॉयड, आईओएस या इंटरनेट से डिस्कनेक्टेड कंप्यूटर पर अद्वितीय हस्ताक्षर का उपयोग करने की सिफारिश की जाती है।',
'Broadcast Your Transaction': 'अपनी लेन-देन का प्रसारण करें',
'into the Blockchain!': 'ब्लॉकचेन में!',
'Please enter the signed transaction code:': 'कृपया हस्ताक्षरित लेन-देन कोड दर्ज करें:',
'Settings': 'सेटिंग्स',
'The first transaction will returned to you as change': 'पहली लेन-देन को आपको बदले के रूप में वापस किया जाएगा',
'The transaction below has been generated and encoded. It can be broadcasted once it has been signed.': 'नीचे दिए गए लेन-देन को उत्पन्न किया और एनकोड किया गया है। इसे हस्ताक्षर किए जाने के बाद प्रसारित किया जा सकता है।',
'Sign': 'हस्ताक्षर',
'Broadcast': 'प्रसारण',
'The above transaction has been signed:': 'ऊपर का लेन-देन हस्ताक्षर किया गया है:',
'Signed transaction': 'हस्ताक्षरित लेन-देन',
'Send your Bitcoin in the safest way.': 'सबसे सुरक्षित तरीके से अपने बिटकॉइन भेजें।',
'100% Free,Open Source!Offline signature, the most secure Bitcoin transfer method': '100% मुफ्त, ओपन सोर्स! ऑफ़लाइन हस्ताक्षर, सबसे सुरक्षित बिटकॉइन स्थानांतरण विधि।',
'Start': 'शुरू करें',
'Download the project file,unzip,then you can run the index.html locally with any browser on Windows,Linux,MAC OS...': 'परियोजना फ़ाइल डाउनलोड करें, अनज़िप करें, फिर आप Windows, Linux, MAC OS पर किसी भी ब्राउज़र के साथ स्थानीय रूप से index.html चला सकते हैं...',
'Choose the cryptocurrency you want to use.': 'वह क्रिप्टोकरेंसी चुनें जिसे आप उपयोग करना चाहते हैं।',
'1:Create transaction': '1:लेन-देन बनाएं',
'2:Sign transaction,It is recommended to sign on an offline device.': '2:लेन-देन के लिए हस्ताक्षर करें, ऑफ़लाइन उपकरण पर हस्ताक्षर करने की सलाह दी जाती है।',
'3:Broadcast transaction': '3:लेन-देन प्रसारित करें',
'Donate Bitcoin:': 'बिटकॉइन दान करें:',
'Run on iPhone/iPad': 'iPhone/iPad पर चलाएं',
'on Windows,MAC,Linux,we just run index.html in browser online or offline,it doesnt need any addtional install.': 'Windows, MAC, Linux पर हम केवल ब्राउज़र में ऑनलाइन या ऑफ़लाइन इंडेक्स.हैटीएमएल चलाते हैं, इसके लिए कोई अतिरिक्त स्थापना की आवश्यकता नहीं होती।',
'You need prepare a MAC computer in order to transfer project files through airpdrop.': 'एयरड्रॉप के माध्यम से परियोजना फ़ाइलें स्थानांतरित करने के लिए आपको एक MAC कंप्यूटर की तैयारी करनी होगी।',
'1.This project is HTML+JS, so we need download a HTML viewer from Appstore.you can also use other html viewer APP in APPStore': '1. यह परियोजना HTML+JS है, इसलिए हमें Appstore से एक HTML दर्शक डाउनलोड करने की आवश्यकता होगी। आप APPStore में अन्य HTML दर्शक APP का उपयोग भी कर सकते हैं।',
'2.drag project folder to our iPhone/iPad through Airdrop': '2. एयरड्रॉप के माध्यम से परियोजना फ़ोल्डर को हमारे iPhone/iPad में खींचें।',
'3.save folder to HTML Viewer': '3. फ़ोल्डर को HTML दर्शक में सहेजें',
'4.tab folder icon in HTML Viewer APP': '4. HTML दर्शक ऐप में फ़ोल्डर आइकन पर क्लिक करें',
'5.find index.html,and tab it.': '5. index.html खोजें और उस पर क्लिक करें।',
'6.Now we can run Signer on our iPhone and iPad Successfully!': '6. अब हम अपने iPhone और iPad पर सफलतापूर्वक Signer चला सकते हैं!',
'Tips:iPhone camera can directly scan QR codes offline': 'टिप्स: iPhone कैमरा सीधे ऑफ़लाइन QR कोड स्कैन कर सकता है।',
'7.If you want to sign offline, just turn on airplane mode.': '7.यदि आप ऑफ़लाइन हस्ताक्षर करना चाहते हैं, तो बस एयरप्लेन मोड चालू करें।',
'8.Still worried?turn off the WIFI permit of APP.': '8.फिर भी चिंतित हैं? ऐप की वाईफ़ाई अनुमति बंद कर दें।',
},
'bn': {
// Bengali translations
'1.Create Transaction': '১. লেনদেন তৈরি করুন',
'2.Sign': '২. স্বাক্ষর করুন',
'3.Broadcast': '৩. প্রচার করুন',
'Chain Settings': 'চেইন সেটিংস',
'IOS': 'আইওএস',
'How to use': 'কিভাবে ব্যবহার করবেন',
'Tools': 'টুলস',
'Help': 'সাহায্য',
'Transaction': 'লেনদেন',
'Use this page to create a raw transaction': 'এই পৃষ্ঠাটি ব্যবহার করে একটি কাঁচা লেনদেন তৈরি করুন',
'Your Address, WIF key, Redeem Script or Transaction ID': 'আপনার ঠিকানা, WIF কী, মুক্তিযোগ্য স্ক্রিপ্ট বা লেনদেন আইডি',
'Recipient Address': 'প্রাপকের ঠিকানা',
'Amount': 'পরিমাণ',
'Load': 'লোড করুন',
'Advanced Options': 'উন্নত বিকল্পসমূহ',
'Transaction Fee(Min:0.000001)': 'লেনদেন ফি (সর্বনিম্ন: 0.000001)',
'Create Transaction': 'লেনদেন তৈরি করুন',
'Sign Transaction': 'লেনদেন স্বাক্ষর করুন',
'Recommended offline': 'অফলাইনে প্রস্তাবিত',
'Private key': 'ব্যক্তিগত কী',
'Show/Hide': 'দেখান/লুকান',
'Language': 'ভাষা',
'Sign Transaction Info': 'নেটওয়ার্কে ব্যক্তিগত কীটি প্রদর্শনের থেকে বিরত থাকার জন্য, আপনাকে অফলাইনে স্বাক্ষর করার জন্য অ্যান্ড্রয়েড, আইওএস অথবা ইন্টারনেটে সংযুক্ত না করা কম্পিউটারে প্রস্তাবিত স্বাক্ষর ব্যবহার করা সুপারিশ করা হয়।',
'Broadcast Your Transaction': 'আপনার লেনদেন প্রচার করুন',
'into the Blockchain!': 'ব্লকচেইনে!',
'Please enter the signed transaction code:': 'দয়া করে স্বাক্ষরিত লেনদেন কোড প্রবেশ করুন:',
'Settings': 'সেটিংস',
'The first transaction will returned to you as change': 'প্রথম লেনদেনটি আপনাকে পরিবর্তনের জন্য ফিরিয়ে দেওয়া হবে',
'The transaction below has been generated and encoded. It can be broadcasted once it has been signed.': 'নীচের লেনদেনটি উৎপন্ন করা হয়েছে এবং এনকোড করা হয়েছে। এটি স্বাক্ষরিত হলে প্রচারিত করা যাবে।',
'Sign': 'স্বাক্ষর',
'Broadcast': 'প্রচার',
'The above transaction has been signed:': 'উপরের লেনদেনটি স্বাক্ষরিত হয়েছে:',
'Signed transaction': 'স্বাক্ষরিত লেনদেন',
'Send your Bitcoin in the safest way.': 'সবচেয়ে নিরাপদ উপায়ে আপনার বিটকয়েন পাঠান।',
'100% Free,Open Source!Offline signature, the most secure Bitcoin transfer method': '100% বিনামূল্যে, ওপেন সোর্স! অফলাইন স্বাক্ষর, সর্বাধিক নিরাপদ বিটকয়েন স্থানান্তর পদ্ধতি।',
'Start': 'শুরু করুন',
'Download the project file,unzip,then you can run the index.html locally with any browser on Windows,Linux,MAC OS...': 'প্রকল্প ফাইলটি ডাউনলোড করুন, আনজিপ করুন, তারপর আপনি Windows, Linux, MAC OS এর যে কোনও ব্রাউজার দিয়ে স্থানীয়ভাবে index.html চালাতে পারেন...',
'Choose the cryptocurrency you want to use.': 'আপনি যে ক্রিপ্টোকারেন্সি ব্যবহার করতে চান তা নির্বাচন করুন।',
'1:Create transaction': '1:লেনদেন তৈরি করুন',
'2:Sign transaction,It is recommended to sign on an offline device.': '2:লেনদেনের জন্য স্বাক্ষর করুন, অফলাইন ডিভাইসে স্বাক্ষর করাটি সুপারিশ করা হয়।',
'3:Broadcast transaction': '3:লেনদেন প্রচার করুন',
'Donate Bitcoin:': 'বিটকয়েন দান করুন:',
'Run on iPhone/iPad': 'iPhone/iPad এ চালান',
'on Windows,MAC,Linux,we just run index.html in browser online or offline,it doesnt need any addtional install.': 'Windows, MAC, Linux উইন্ডোজ,ম্যাক, লিনাক্স তে আমরা ইন্টারনেট সংযোগ থাকলেও অফলাইন অবস্থায় প্রথম যেই অথবা এখানে কোনো অতিরিক্ত অনুষ্ঠানিক প্রতিষ্ঠান প্রয়োজন হয়না।',
'You need prepare a MAC computer in order to transfer project files through airpdrop.': 'আপনাকে প্রকল্প ফাইলগুলি এয়ারড্রপের মাধ্যমে স্থানান্তর করতে ম্যাক কম্পিউটারটি প্রস্তুত করতে হবে।',
'1.This project is HTML+JS, so we need download a HTML viewer from Appstore.you can also use other html viewer APP in APPStore': '1.এই প্রকল্পটি এইচটিএমএল+জেএস, সুতরাং আমাদেরকে অ্যাপস্টোর থেকে একটি এইচটিএমএল ভিউয়ায়ের ডাউনলোড করতে হবে। আপনি অ্যাপস্টোরের অন্যান্য এইচটিএমএল ভিউয়ায়ের অ্যাপসটি ব্যবহার করতেও পারেন।',
'2.drag project folder to our iPhone/iPad through Airdrop': '2.এয়ারড্রপের মাধ্যমে প্রকল্প ফোল্ডারটি আমাদের আইফোন/আইপ্যাডে টেনে নিন',
'3.save folder to HTML Viewer': '3.HTML ভিউয়ায়ের জন্য ফোল্ডারটি সংরক্ষণ করুন',
'4.tab folder icon in HTML Viewer APP': '4.HTML ভিউয়ায়ের এ্যাপটিতে ফোল্ডার আইকন ট্যাব করুন',
'5.find index.html,and tab it.': '5.index.html খুঁজে বের করুন, এবং ট্যাব করুন।',
'6.Now we can run Signer on our iPhone and iPad Successfully!': '6.এখন আমরা আমাদের আইফোন এবং আইপ্যাডে Signer সফলভাবে চালাতে পারি!',
'Tips:iPhone camera can directly scan QR codes offline': 'টিপস: iPhone ক্যামেরা অফলাইনে সরাসরি QR কোড স্ক্যান করতে পারে।',
'7.If you want to sign offline, just turn on airplane mode.': '7.আপনি যদি অফলাইনে স্বাক্ষর করতে চান, তবে কেবলমাত্র বিমান মোড চালু করুন।',
'8.Still worried?turn off the WIFI permit of APP.': '8.এখনও চিন্তিত? অ্যাপ এর ওয়াইফাই অনুমতি বন্ধ করুন।',
},
'pt': {
// Portuguese translations
'1.Create Transaction': '1. Criar Transação',
'2.Sign': '2. Assinar',
'3.Broadcast': '3. Transmitir',
'Chain Settings': 'Configurações da Cadeia',
'IOS': 'IOS',
'How to use': 'Como utilizar',
'Tools': 'Ferramentas',
'Help': 'Ajuda',
'Transaction': 'Transação',
'Use this page to create a raw transaction': 'Utilize esta página para criar uma transação em bruto',
'Your Address, WIF key, Redeem Script or Transaction ID': 'Seu Endereço, Chave WIF, Script de Resgate ou ID da Transação',
'Recipient Address': 'Endereço do Destinatário',
'Amount': 'Quantidade',
'Load': 'Carregar',
'Advanced Options': 'Opções Avançadas',
'Transaction Fee(Min:0.000001)': 'Taxa de Transação (Mín: 0.000001)',
'Create Transaction': 'Criar Transação',
'Sign Transaction': 'Assinar Transação',
'Recommended offline': 'Recomendado offline',
'Private key': 'Chave Privada',
'Show/Hide': 'Mostrar/Ocultar',
'Language': 'Idioma',
'Sign Transaction Info': 'Para evitar expor a chave privada na rede, recomenda-se assinar a transação em um dispositivo Android, iOS ou um computador desconectado da internet, possibilitando uma assinatura offline.',
'Broadcast Your Transaction': 'Transmitir sua Transação',
'into the Blockchain!': 'para a Blockchain!',
'Please enter the signed transaction code:': 'Por favor, digite o código da transação assinada:',
'Settings': 'Configurações',
'The first transaction will returned to you as change': 'A primeira transação será retornada para você como troco',
'The transaction below has been generated and encoded. It can be broadcasted once it has been signed.': 'A transação abaixo foi gerada e codificada. Ela pode ser transmitida assim que for assinada.',
'Sign': 'Assinar',
'Broadcast': 'Transmitir',
'The above transaction has been signed:': 'A transação acima foi assinada:',
'Signed transaction': 'Transação assinada',
'Send your Bitcoin in the safest way.': 'Envie seus Bitcoins da maneira mais segura.',
'100% Free,Open Source!Offline signature, the most secure Bitcoin transfer method': '100% Grátis, Código Aberto! Assinatura offline, o método de transferência de Bitcoin mais seguro.',
'Start': 'Iniciar',
'Download the project file,unzip,then you can run the index.html locally with any browser on Windows,Linux,MAC OS...': 'Baixe o arquivo do projeto, descompacte e você poderá executar o arquivo index.html localmente em qualquer egador no Windows, Linux, MAC OS...',
'Choose the cryptocurrency you want to use.': 'Escolha a criptomoeda que deseja usar.',
'1:Create transaction': '1:Criar transação',
'2:Sign transaction,It is recommended to sign on an offline device.': '2:Assinar transação, é recomendado assinar em um dispositivo offline.',
'3:Broadcast transaction': '3:Transmitir transação',
'Donate Bitcoin:': 'Doe Bitcoin:',
'Run on iPhone/iPad': 'Executar no iPhone/iPad',
'on Windows,MAC,Linux,we just run index.html in browser online or offline,it doesnt need any addtional install.': 'No Windows, MAC, Linux, executamos o arquivo index.html no egador online ou offline, não sendo necessário qualquer instalação adicional.',
'You need prepare a MAC computer in order to transfer project files through airpdrop.': 'Você precisa preparar um computador MAC para transferir os arquivos do projeto por meio do AirDrop.',
'1.This project is HTML+JS, so we need download a HTML viewer from Appstore.you can also use other html viewer APP in APPStore': '1.Este projeto é HTML+JS, portanto, precisamos baixar um visualizador de HTML na App Store. Você também pode usar outro aplicativo de visualização de HTML na App Store.',
'2.drag project folder to our iPhone/iPad through Airdrop': '2.Arraste a pasta do projeto para o iPhone/iPad por meio do AirDrop.',
'3.save folder to HTML Viewer': '3.Salve a pasta no Visualizador de HTML.',
'4.tab folder icon in HTML Viewer APP': '4.Toque no ícone da pasta no aplicativo Visualizador de HTML.',
'5.find index.html,and tab it.': '5.Encontre o index.html e toque nele.',
'6.Now we can run Signer on our iPhone and iPad Successfully!': '6.Agora podemos executar o Signer com sucesso no nosso iPhone e iPad!',
'Tips:iPhone camera can directly scan QR codes offline': 'Dicas: A câmera do iPhone pode escanear códigos QR diretamente offline.',
'7.If you want to sign offline, just turn on airplane mode.': '7.Se quiser assinar offline, basta ativar o modo avião.',
'8.Still worried?turn off the WIFI permit of APP.': '8.Ainda está preocupado? Desligue a permissão de WI-FI do APP.',
},
'ru': {
// Russian translations
'1.Create Transaction': '1. Создать транзакцию',
'2.Sign': '2. Подписать',
'3.Broadcast': '3. Отправить',
'Chain Settings': 'Настройки цепи',
'IOS': 'IOS',
'How to use': 'Как использовать',
'Tools': 'Инструменты',
'Help': 'Помощь',
'Transaction': 'Транзакция',
'Use this page to create a raw transaction': 'Используйте эту страницу для создания необработанной транзакции',
'Your Address, WIF key, Redeem Script or Transaction ID': 'Ваш адрес, ключ WIF, сценарий выкупа или идентификатор транзакции',
'Recipient Address': 'Адрес получателя',
'Amount': 'Сумма',
'Load': 'Загрузить',
'Advanced Options': 'Дополнительные опции',
'Transaction Fee(Min:0.000001)': 'Комиссия за транзакцию (Мин: 0.000001)',
'Create Transaction': 'Создать транзакцию',
'Sign Transaction': 'Подписать транзакцию',
'Recommended offline': 'Рекомендуется офлайн',
'Private key': 'Приватный ключ',
'Show/Hide': 'Показать/Скрыть',
'Language': 'Язык',
'Sign Transaction Info': 'Для защиты приватного ключа от раскрытия в сети рекомендуется подписывать транзакции на устройстве Android, iOS или компьютере, не подключенном к интернету, обеспечивая офлайн-подпись.',
'Broadcast Your Transaction': 'Отправить вашу транзакцию',
'into the Blockchain!': 'в блокчейн!',
'Please enter the signed transaction code:': 'Пожалуйста, введите код подписанной транзакции:',
'Settings': 'Настройки',
'The first transaction will returned to you as change': 'Первая транзакция будет возвращена вам в виде сдачи',
'The transaction below has been generated and encoded. It can be broadcasted once it has been signed.': 'Нижеприведенная транзакция была создана и закодирована. Она может быть отправлена после подписи.',
'Sign': 'Подписать',
'Broadcast': 'Отправить',
'The above transaction has been signed:': 'Вышеуказанная транзакция была подписана:',
'Signed transaction': 'Подписанная транзакция',
'Send your Bitcoin in the safest way.': 'Отправьте свои биткойны самым безопасным способом.',
'100% Free,Open Source!Offline signature, the most secure Bitcoin transfer method': '100% Бесплатно, Открытый исходный код! Оффлайн-подпись, самый безопасный способ передачи биткойнов.',
'Start': 'Старт',
'Download the project file,unzip,then you can run the index.html locally with any browser on Windows,Linux,MAC OS...': 'Загрузите файл проекта, распакуйте его, затем вы сможете запустить index.html локально с любым браузером на Windows, Linux, MAC OS...',
'Choose the cryptocurrency you want to use.': 'Выберите криптовалюту, которую хотите использовать.',
'1:Create transaction': '1:Создать транзакцию',
'2:Sign transaction,It is recommended to sign on an offline device.': '2:Подписать транзакцию, рекомендуется подписывать на оффлайн-устройстве.',
'3:Broadcast transaction': '3:Транслировать транзакцию',
'Donate Bitcoin:': 'Пожертвовать биткойн:',
'Run on iPhone/iPad': 'Запустить на iPhone/iPad',
'on Windows,MAC,Linux,we just run index.html in browser online or offline,it doesnt need any addtional install.': 'На Windows, MAC, Linux мы просто запускаем index.html в браузере онлайн или оффлайн, это не требует дополнительной установки.',
'You need prepare a MAC computer in order to transfer project files through airpdrop.': 'Вам нужно подготовить компьютер MAC, чтобы передать файлы проекта через AirDrop.',
'1.This project is HTML+JS, so we need download a HTML viewer from Appstore.you can also use other html viewer APP in APPStore': '1.Этот проект является HTML+JS, поэтому нам нужно загрузить просмотрщик HTML из Appstore. Вы также можете использовать другое приложение для просмотра HTML в APPStore.',
'2.drag project folder to our iPhone/iPad through Airdrop': '2.Перетащите папку проекта на наш iPhone/iPad через AirDrop.',
'3.save folder to HTML Viewer': '3.Сохраните папку в HTML Viewer',
'4.tab folder icon in HTML Viewer APP': '4.Перейдите на иконку папки в приложении HTML Viewer',
'5.find index.html,and tab it.': '5.Найдите index.html и нажмите на него.',
'6.Now we can run Signer on our iPhone and iPad Successfully!': '6.Теперь мы успешно можем запустить Signer на нашем iPhone и iPad!',
'Tips:iPhone camera can directly scan QR codes offline': 'Совет: камера iPhone может непосредственно сканировать QR-коды оффлайн.',
'7.If you want to sign offline, just turn on airplane mode.': '7.Если вы хотите подписаться оффлайн, просто включите режим "в самолете".',
'8.Still worried?turn off the WIFI permit of APP.': '8.Все еще беспокоитесь? Выключите разрешение на WI-FI приложения.',
},
'ja': {
// Japanese translations
'1.Create Transaction': '1. トランザクションを作成する',
'2.Sign': '2. 署名する',
'3.Broadcast': '3. ブロードキャストする',
'Chain Settings': 'チェーンの設定',
'IOS': 'IOS',
'How to use': '使い方',
'Tools': 'ツール',
'Help': 'ヘルプ',
'Transaction': 'トランザクション',
'Use this page to create a raw transaction': 'このページを使って生のトランザクションを作成します',
'Your Address, WIF key, Redeem Script or Transaction ID': 'あなたのアドレス、WIFキー、償還スクリプト、またはトランザクションID',
'Recipient Address': '受取人のアドレス',
'Amount': '金額',
'Load': 'ロード',
'Advanced Options': '高度なオプション',
'Transaction Fee(Min:0.000001)': 'トランザクション手数料(最小:0.000001)',
'Create Transaction': 'トランザクションを作成する',
'Sign Transaction': 'トランザクションに署名する',
'Recommended offline': 'オフラインでの使用をおすすめします',
'Private key': 'プライベートキー',
'Show/Hide': '表示/非表示',
'Language': '言語',
'Sign Transaction Info': 'プライベートキーをネットワーク上で公開しないために、Android、iOS、またはインターネットに接続されていないコンピュータでトランザクションに署名することをおすすめします。',
'Broadcast Your Transaction': 'トランザクションをブロードキャストする',
'into the Blockchain!': 'ブロックチェーンに!',
'Please enter the signed transaction code:': '署名されたトランザクションコードを入力してください:',
'Settings': '設定',
'The first transaction will returned to you as change': '最初のトランザクションはお釣りとして返金されます',
'The transaction below has been generated and encoded. It can be broadcasted once it has been signed.': '以下のトランザクションが生成され、エンコードされました。署名されるとブロードキャストできます。',
'Sign': '署名',
'Broadcast': 'ブロードキャスト',
'The above transaction has been signed:': '上記のトランザクションは署名されました:',
'Signed transaction': '署名済みトランザクション',
'Send your Bitcoin in the safest way.': '最も安全な方法でビットコインを送信してください。',
'100% Free,Open Source!Offline signature, the most secure Bitcoin transfer method': '100% 無料、オープンソース!オフライン署名、最も安全なビットコイン転送方法',
'Start': '開始',
'Download the project file,unzip,then you can run the index.html locally with any browser on Windows,Linux,MAC OS...': 'プロジェクトファイルをダウンロードし、解凍してから、Windows、Linux、MAC OS 上のどのブラウザでも index.html をローカルで実行できます...',
'Choose the cryptocurrency you want to use.': '使用する暗号通貨を選択してください。',
'1:Create transaction': '1:トランザクションの作成',
'2:Sign transaction,It is recommended to sign on an offline device.': '2:トランザクションに署名するには、オフラインデバイスで署名することを推奨します。',
'3:Broadcast transaction': '3:トランザクションのブロードキャスト',
'Donate Bitcoin:': 'ビットコインを寄付する:',
'Run on iPhone/iPad': 'iPhone/iPad で実行',
'on Windows,MAC,Linux,we just run index.html in browser online or offline,it doesnt need any addtional install.': 'Windows、MAC、Linux 上では、オンラインまたはオフラインでブラウザで index.html を実行するだけで、追加のインストールは必要ありません。',
'You need prepare a MAC computer in order to transfer project files through airpdrop.': 'プロジェクトファイルをAirDropを介して転送するためには、MACコンピュータを用意する必要があります。',
'1.This project is HTML+JS, so we need download a HTML viewer from Appstore.you can also use other html viewer APP in APPStore': '1.このプロジェクトはHTML+JSですので、AppstoreからHTMLビューアをダウンロードする必要があります。また、Appstoreの他のHTMLビューアアプリを使用することもできます。',
'2.drag project folder to our iPhone/iPad through Airdrop': '2.Airdropを介してプロジェクトフォルダをiPhone/iPadにドラッグします',
'3.save folder to HTML Viewer': '3.フォルダをHTMLビューアに保存します',
'4.tab folder icon in HTML Viewer APP': '4.HTMLビューアアプリでフォルダアイコンをタップします',
'5.find index.html,and tab it.': '5.index.html を見つけてタップします。',
'6.Now we can run Signer on our iPhone and iPad Successfully!': '6.これで、iPhoneとiPadでSignerを正常に実行できます!',
'Tips:iPhone camera can directly scan QR codes offline': 'ヒント:iPhoneのカメラはオフラインで直接QRコードをスキャンできます。',
'7.If you want to sign offline, just turn on airplane mode.': '7.オフラインで署名する場合は、飛行機モードをオンにするだけです。',
'8.Still worried?turn off the WIFI permit of APP.': '8.まだ心配ですか?アプリのWI-FI許可をオフにしてください。',
},
'tr': {
// Turkish translations
'1.Create Transaction': '1. İşlem Oluştur',
'2.Sign': '2. İmzala',
'3.Broadcast': '3. Yayınla',
'Chain Settings': 'Zincir Ayarları',
'IOS': 'IOS',
'How to use': 'Nasıl kullanılır',
'Tools': 'Araçlar',
'Help': 'Yardım',
'Transaction': 'İşlem',
'Use this page to create a raw transaction': 'Bu sayfayı kullanarak ham bir işlem oluşturun',
'Your Address, WIF key, Redeem Script or Transaction ID': 'Adresiniz, WIF anahtarınız, Geri Alma Betiği veya İşlem Kimliği',
'Recipient Address': 'Alıcı Adresi',
'Amount': 'Miktar',
'Load': 'Yükle',
'Advanced Options': 'Gelişmiş Seçenekler',
'Transaction Fee(Min:0.000001)': 'İşlem Ücreti (Min: 0.000001)',
'Create Transaction': 'İşlem Oluştur',
'Sign Transaction': 'İşlemi İmzala',
'Recommended offline': 'Çevrimdışı kullanım önerilir',
'Private key': 'Özel Anahtar',
'Show/Hide': 'Göster/Gizle',
'Language': 'Dil',
'Sign Transaction Info': 'Özel anahtarınızı ağda ifşa etmemek için işlemi bir Android, iOS veya internete bağlı olmayan bir bilgisayarda imzalamanız önerilir.',
'Broadcast Your Transaction': 'İşleminizi Yayınla',
'into the Blockchain!': 'blok zincire!',
'Please enter the signed transaction code:': 'Lütfen imzalanmış işlem kodunu girin:',
'Settings': 'Ayarlar',
'The first transaction will returned to you as change': 'İlk işlem size değişim olarak iade edilecektir',
'The transaction below has been generated and encoded. It can be broadcasted once it has been signed.': 'Aşağıdaki işlem oluşturuldu ve kodlandı. İmzalandığında yayınlanabilir.',
'Sign': 'İmzala',
'Broadcast': 'Yayınla',
'The above transaction has been signed:': 'Yukarıdaki işlem imzalanmıştır:',
'Signed transaction': 'İmzalı işlem',
'Send your Bitcoin in the safest way.': 'Bitcoin inizi en güvenli şekilde gönderin.',
'100% Free,Open Source!Offline signature, the most secure Bitcoin transfer method': '100% Ücretsiz, Açık Kaynak! Çevrimdışı imza, en güvenli Bitcoin transfer yöntemi',
'Start': 'Başlat',
'Download the project file,unzip,then you can run the index.html locally with any browser on Windows,Linux,MAC OS...': 'Proje dosyasını indirin, açın, ardından index.html i Windows, Linux, MAC OS üzerinde herhangi bir tarayıcıda yerel olarak çalıştırabilirsiniz...',
'Choose the cryptocurrency you want to use.': 'Kullanmak istediğiniz kripto para birimini seçin.',
'1:Create transaction': '1:İşlem oluştur',
'2:Sign transaction,It is recommended to sign on an offline device.': '2:İşlemi imzala, imzayı çevrimdışı bir cihazda yapmanız önerilir.',
'3:Broadcast transaction': '3:İşlemi yayınla',
'Donate Bitcoin:': 'Bitcoin Bağışla:',
'Run on iPhone/iPad': 'iPhone/iPad de çalıştır',
'on Windows,MAC,Linux,we just run index.html in browser online or offline,it doesnt need any addtional install.': 'Windows, MAC, Linux ta sadece tarayıcıda online veya çevrimdışı olarak index.html i çalıştırırız, ek bir kurulum gerekmez.',
'You need prepare a MAC computer in order to transfer project files through airpdrop.': 'Proje dosyalarını AirDrop aracılığıyla aktarmak için bir MAC bilgisayar hazırlamanız gerekmektedir.',
'1.This project is HTML+JS, so we need download a HTML viewer from Appstore.you can also use other html viewer APP in APPStore': '1.Bu proje HTML+JS olduğundan, Appstore dan bir HTML görüntüleyici indirmemiz gerekiyor. Ayrıca APPStore daki diğer HTML görüntüleyici uygulamalarını da kullanabilirsiniz.',
'2.drag project folder to our iPhone/iPad through Airdrop': '2.AirDrop aracılığıyla projeyi iPhone/iPad e sürükleyin',
'3.save folder to HTML Viewer': '3.Folder ı HTML Viewer a kaydedin',
'4.tab folder icon in HTML Viewer APP': '4.HTML Viewer Uygulaması ndaki folder simgesine dokunun',
'5.find index.html,and tab it.': '5.index.html i bulun ve üzerine dokunun.',
'6.Now we can run Signer on our iPhone and iPad Successfully!': '6.Artık iPhone ve iPad imizde Signer ı başarıyla çalıştırabiliriz!',
'Tips:iPhone camera can directly scan QR codes offline': 'İpucu: iPhone kamerası çevrimdışı QR kodlarını doğrudan tarayabilir.',
'7.If you want to sign offline, just turn on airplane mode.': '7.Çevrimdışı imza atmak isterseniz, sadece uçak modunu açın.',
'8.Still worried?turn off the WIFI permit of APP.': '8.Hala endişeleniyor musunuz? Uygulamanın WI-FI iznini kapatın.',
},
'ko': {
// Korean translations
'1.Create Transaction': '1. 거래 생성',
'2.Sign': '2. 서명',
'3.Broadcast': '3. 브로드캐스트',
'Chain Settings': '체인 설정',
'IOS': 'IOS',
'How to use': '사용 방법',
'Tools': '도구',
'Help': '도움말',
'Transaction': '거래',
'Use this page to create a raw transaction': '이 페이지를 사용하여 원시 거래를 생성합니다',
'Your Address, WIF key, Redeem Script or Transaction ID': '귀하의 주소, WIF 키, 교환 스크립트 또는 거래 ID',
'Recipient Address': '수신자 주소',
'Amount': '금액',
'Load': '로드',
'Advanced Options': '고급 옵션',
'Transaction Fee(Min:0.000001)': '거래 수수료(최소: 0.000001)',
'Create Transaction': '거래 생성',
'Sign Transaction': '거래 서명',
'Recommended offline': '오프라인 사용 권장',
'Private key': '개인 키',
'Show/Hide': '보이기/숨기기',
'Language': '언어',
'Sign Transaction Info': '개인 키가 네트워크에서 노출되지 않도록 Android, iOS 또는 인터넷에 연결되지 않은 컴퓨터에서 거래를 서명하는 것이 좋습니다.',
'Broadcast Your Transaction': '거래를 브로드캐스트',
'into the Blockchain!': '블록체인으로!',
'Please enter the signed transaction code:': '서명된 거래 코드를 입력하세요:',
'Settings': '설정',
'The first transaction will returned to you as change': '첫 번째 거래는 거스름돈으로 반환됩니다',
'The transaction below has been generated and encoded. It can be broadcasted once it has been signed.': '아래 거래가 생성되어 인코딩되었습니다. 서명된 후에 브로드캐스트할 수 있습니다.',
'Sign': '서명',
'Broadcast': '브로드캐스트',
'The above transaction has been signed:': '위의 거래가 서명되었습니다:',
'Signed transaction': '서명된 거래',
'Send your Bitcoin in the safest way.': '가장 안전한 방법으로 비트코인을 전송하세요.',
'100% Free,Open Source!Offline signature, the most secure Bitcoin transfer method': '100% 무료, 오픈 소스! 오프라인 서명, 가장 안전한 비트코인 전송 방법',
'Start': '시작',
'Download the project file,unzip,then you can run the index.html locally with any browser on Windows,Linux,MAC OS...': '프로젝트 파일을 다운로드하고 압축 해제한 다음 Windows, Linux, MAC OS에서 어떤 브라우저로든 index.html을 로컬에서 실행할 수 있습니다...',
'Choose the cryptocurrency you want to use.': '사용하고 싶은 암호화폐를 선택하세요.',
'1:Create transaction': '1:거래 생성',
'2:Sign transaction,It is recommended to sign on an offline device.': '2:거래에 서명하십시오. 오프라인 기기에서 서명하는 것이 좋습니다.',
'3:Broadcast transaction': '3:거래 전파',
'Donate Bitcoin:': '비트코인 기부:',
'Run on iPhone/iPad': 'iPhone/iPad에서 실행',
'on Windows,MAC,Linux,we just run index.html in browser online or offline,it doesnt need any addtional install.': 'Windows, MAC, Linux에서는 온라인 또는 오프라인으로 브라우저에서 index.html만 실행하면 추가 설치가 필요하지 않습니다.',
'You need prepare a MAC computer in order to transfer project files through airpdrop.': '프로젝트 파일을 AirDrop을 통해 전송하려면 MAC 컴퓨터를 준비해야 합니다.',
'1.This project is HTML+JS, so we need download a HTML viewer from Appstore.you can also use other html viewer APP in APPStore': '1.이 프로젝트는 HTML+JS이므로 Appstore에서 HTML 뷰어를 다운로드해야 합니다. 또한 APPStore에서 다른 HTML 뷰어 앱을 사용할 수도 있습니다.',
'2.drag project folder to our iPhone/iPad through Airdrop': '2.AirDrop을 통해 프로젝트 폴더를 iPhone/iPad로 드래그합니다.',
'3.save folder to HTML Viewer': '3.폴더를 HTML Viewer에 저장하세요.',
'4.tab folder icon in HTML Viewer APP': '4.HTML Viewer 앱에서 폴더 아이콘을 탭하세요.',
'5.find index.html,and tab it.': '5.index.html을 찾아 탭하세요.',
'6.Now we can run Signer on our iPhone and iPad Successfully!': '6.이제 iPhone과 iPad에서 Signer를 성공적으로 실행할 수 있습니다!',
'Tips:iPhone camera can directly scan QR codes offline': '팁: iPhone 카메라로 오프라인에서 직접 QR 코드를 스캔할 수 있습니다.',
'7.If you want to sign offline, just turn on airplane mode.': '7.오프라인에서 서명하려면 비행기 모드를 켜기만 하면 됩니다.',
'8.Still worried?turn off the WIFI permit of APP.': '8.아직 걱정이 되나요? 앱의 WI-FI 허용을 끄세요.',
},
'fr': {
// French translations
'1.Create Transaction': '1. Créer une transaction',
'2.Sign': '2. Signer',
'3.Broadcast': '3. Diffuser',
'Chain Settings': 'Paramètres de la chaîne',
'IOS': 'IOS',
'How to use': 'Comment utiliser',
'Tools': 'Outils',
'Help': 'Aide',
'Transaction': 'Transaction',
'Use this page to create a raw transaction': 'Utilisez cette page pour créer une transaction brute',
'Your Address, WIF key, Redeem Script or Transaction ID': 'Votre adresse, clé WIF, script de récupération ou ID de transaction',
'Recipient Address': 'Adresse du destinataire',
'Amount': 'Montant',
'Load': 'Charger',
'Advanced Options': 'Options avancées',
'Transaction Fee(Min:0.000001)': 'Frais de transaction (Min: 0.000001)',
'Create Transaction': 'Créer une transaction',
'Sign Transaction': 'Signer la transaction',
'Recommended offline': 'Recommandé hors ligne',
'Private key': 'Clé privée',
'Show/Hide': 'Afficher/Masquer',
'Language': 'Langue',
'Sign Transaction Info': 'Pour éviter de divulguer votre clé privée sur le réseau, il est recommandé de signer la transaction sur un appareil Android, iOS ou un ordinateur déconnecté d\'Internet, ce qui permet une signature hors ligne.',
'Broadcast Your Transaction': 'Diffuser votre transaction',
'into the Blockchain!': 'dans la blockchain !',
'Please enter the signed transaction code:': 'Veuillez entrer le code de transaction signée :',
'Settings': 'Paramètres',
'The first transaction will returned to you as change': 'La première transaction vous sera retournée en tant que monnaie rendue',
'The transaction below has been generated and encoded. It can be broadcasted once it has been signed.': 'La transaction ci-dessous a été générée et encodée. Elle peut être diffusée une fois qu\'elle a été signée.',
'Sign': 'Signer',
'Broadcast': 'Diffuser',
'The above transaction has been signed:': 'La transaction ci-dessus a été signée :',
'Signed transaction': 'Transaction signée',
'Send your Bitcoin in the safest way.': 'Envoyez vos Bitcoins de la manière la plus sûre.',
'100% Free,Open Source!Offline signature, the most secure Bitcoin transfer method': '100% Gratuit, Open Source! Signature hors ligne, la méthode de transfert de Bitcoin la plus sécurisée',
'Start': 'Démarrer',
'Download the project file,unzip,then you can run the index.html locally with any browser on Windows,Linux,MAC OS...': 'Téléchargez le fichier du projet, décompressez-le, puis exécutez index.html localement avec n importe quel igateur sur Windows, Linux, MAC OS...',
'Choose the cryptocurrency you want to use.': 'Choisissez la cryptomonnaie que vous souhaitez utiliser.',
'1:Create transaction': '1:Créer une transaction',
'2:Sign transaction,It is recommended to sign on an offline device.': '2:Signer la transaction, il est recommandé de signer sur un appareil hors ligne.',
'3:Broadcast transaction': '3:Diffuser la transaction',
'Donate Bitcoin:': 'Faire un don Bitcoin :',
'Run on iPhone/iPad': 'Exécuter sur iPhone/iPad',
'on Windows,MAC,Linux,we just run index.html in browser online or offline,it doesnt need any addtional install.': 'Sur Windows, MAC, Linux, il suffit d exécuter index.html dans un igateur en ligne ou hors ligne, aucune installation supplémentaire n est nécessaire.',
'You need prepare a MAC computer in order to transfer project files through airpdrop.': 'Vous devez préparer un ordinateur MAC afin de transférer les fichiers du projet via AirDrop.',
'1.This project is HTML+JS, so we need download a HTML viewer from Appstore.you can also use other html viewer APP in APPStore': '1.Ce projet est en HTML+JS, donc nous devons télécharger un visualiseur HTML depuis l Appstore. Vous pouvez également utiliser une autre application de visualisation HTML disponible dans l APPStore.',
'2.drag project folder to our iPhone/iPad through Airdrop': '2.Faites glisser le dossier du projet vers notre iPhone/iPad via AirDrop.',
'3.save folder to HTML Viewer': '3.Enregistrez le dossier dans le visualiseur HTML',
'4.tab folder icon in HTML Viewer APP': '4.Sélectionnez l icône du dossier dans l application Visualiseur HTML.',
'5.find index.html,and tab it.': '5.Trouvez index.html et sélectionnez-le.',
'6.Now we can run Signer on our iPhone and iPad Successfully!': '6.Maintenant, nous pouvons exécuter Signer avec succès sur notre iPhone et iPad !',
'Tips:iPhone camera can directly scan QR codes offline': 'Astuce : l appareil photo de l iPhone peut scanner directement les codes QR hors ligne.',
'7.If you want to sign offline, just turn on airplane mode.': '7.Si vous souhaitez signer hors ligne, activez simplement le mode avion.',
'8.Still worried?turn off the WIFI permit of APP.': '8.Toujours inquiet ? Désactivez l autorisation WIFI de l application.',
},
'de': {
// German translations
'1.Create Transaction': '1. Transaktion erstellen',
'2.Sign': '2. Signieren',
'3.Broadcast': '3. Übertragen',
'Chain Settings': 'Ketteneinstellungen',
'IOS': 'IOS',
'How to use': 'Anleitung',
'Tools': 'Werkzeuge',
'Help': 'Hilfe',
'Transaction': 'Transaktion',
'Use this page to create a raw transaction': 'Verwenden Sie diese Seite, um eine Rohtransaktion zu erstellen',
'Your Address, WIF key, Redeem Script or Transaction ID': 'Ihre Adresse, WIF-Schlüssel, Rückzahlungsskript oder Transaktions-ID',
'Recipient Address': 'Empfängeradresse',
'Amount': 'Betrag',
'Load': 'Laden',
'Advanced Options': 'Erweiterte Optionen',
'Transaction Fee(Min:0.000001)': 'Transaktionsgebühr (Min: 0,000001)',
'Create Transaction': 'Transaktion erstellen',
'Sign Transaction': 'Transaktion signieren',
'Recommended offline': 'Empfohlen offline',
'Private key': 'Privater Schlüssel',
'Show/Hide': 'Anzeigen/Ausblenden',
'Language': 'Sprache',
'Sign Transaction Info': 'Um zu verhindern, dass Ihr privater Schlüssel im Netzwerk veröffentlicht wird, wird empfohlen, die Transaktion auf einem Android-, iOS- oder nicht mit dem Internet verbundenen Computer zu signieren und eine Offline-Signatur zu verwenden.',
'Broadcast Your Transaction': 'Ihre Transaktion übertragen',
'into the Blockchain!': 'in die Blockchain!',
'Please enter the signed transaction code:': 'Bitte geben Sie den signierten Transaktionscode ein:',
'Settings': 'Einstellungen',
'The first transaction will returned to you as change': 'Die erste Transaktion wird Ihnen als Wechselgeld zurückgegeben',
'The transaction below has been generated and encoded. It can be broadcasted once it has been signed.': 'Die folgende Transaktion wurde generiert und codiert. Sie kann übertragen werden, sobald sie signiert wurde.',
'Sign': 'Signieren',
'Broadcast': 'Übertragen',
'The above transaction has been signed:': 'Die obige Transaktion wurde signiert:',
'Signed transaction': 'Signierte Transaktion',
'Send your Bitcoin in the safest way.': 'Senden Sie Ihre Bitcoin auf sicherste Weise.',
'100% Free,Open Source!Offline signature, the most secure Bitcoin transfer method': '100% Kostenlos, Open Source! Offline-Signatur, die sicherste Bitcoin-Übertragungsmethode',
'Start': 'Start',
'Download the project file,unzip,then you can run the index.html locally with any browser on Windows,Linux,MAC OS...': 'Laden Sie die Projektdatei herunter, entpacken Sie sie und Sie können die index.html lokal mit jedem Browser unter Windows, Linux, MAC OS ausführen...',
'Choose the cryptocurrency you want to use.': 'Wählen Sie die Kryptowährung aus, die Sie verwenden möchten.',
'1:Create transaction': '1:Transaktion erstellen',
'2:Sign transaction,It is recommended to sign on an offline device.': '2:Transaktion signieren, es wird empfohlen, auf einem Offline-Gerät zu signieren.',
'3:Broadcast transaction': '3:Transaktion übertragen',
'Donate Bitcoin:': 'Bitcoin spenden:',
'Run on iPhone/iPad': 'Auf iPhone/iPad ausführen',
'on Windows,MAC,Linux,we just run index.html in browser online or offline,it doesnt need any addtional install.': 'Unter Windows, MAC, Linux führen wir einfach index.html im Browser online oder offline aus. Es ist keine zusätzliche Installation erforderlich.',
'You need prepare a MAC computer in order to transfer project files through airpdrop.': 'Sie müssen einen MAC-Computer vorbereiten, um Projektdateien über AirDrop zu übertragen.',
'1.This project is HTML+JS, so we need download a HTML viewer from Appstore.you can also use other html viewer APP in APPStore': '1.Dieses Projekt besteht aus HTML+JS, daher müssen wir einen HTML-Viewer aus dem Appstore herunterladen. Sie können auch andere HTML-Viewer-Apps im APPStore verwenden.',
'2.drag project folder to our iPhone/iPad through Airdrop': '2.Ziehen Sie den Projektordner über AirDrop auf unser iPhone/iPad.',
'3.save folder to HTML Viewer': '3.Speichern Sie den Ordner im HTML-Viewer.',
'4.tab folder icon in HTML Viewer APP': '4.Wählen Sie das Ordnersymbol in der HTML Viewer-App aus.',
'5.find index.html,and tab it.': '5.Finden Sie index.html und wählen Sie es aus.',
'6.Now we can run Signer on our iPhone and iPad Successfully!': '6.Jetzt können wir Signer erfolgreich auf unserem iPhone und iPad ausführen!',
'Tips:iPhone camera can directly scan QR codes offline': 'Hinweis: Die iPhone-Kamera kann QR-Codes offline direkt scannen.',
'7.If you want to sign offline, just turn on airplane mode.': '7.Wenn Sie offline unterschreiben möchten, schalten Sie einfach den Flugmodus ein.',
'8.Still worried?turn off the WIFI permit of APP.': '8.Immer noch besorgt? Schalten Sie die WI-FI-Berechtigung der APP aus.',
},
'vi': {
// Vietnamese translations
'1.Create Transaction': '1. Tạo Giao dịch',
'2.Sign': '2. Ký',
'3.Broadcast': '3. Phát sóng',
'Chain Settings': 'Cài đặt Chuỗi',
'IOS': 'IOS',
'How to use': 'Cách sử dụng',
'Tools': 'Công cụ',
'Help': 'Trợ giúp',
'Transaction': 'Giao dịch',
'Use this page to create a raw transaction': 'Sử dụng trang này để tạo một giao dịch nguyên thủy',
'Your Address, WIF key, Redeem Script or Transaction ID': 'Địa chỉ, khóa WIF, mã rút gọn hoặc ID Giao dịch của bạn',
'Recipient Address': 'Địa chỉ người nhận',
'Amount': 'Số tiền',
'Load': 'Tải',
'Advanced Options': 'Tùy chọn nâng cao',
'Transaction Fee(Min:0.000001)': 'Phí giao dịch (Tối thiểu: 0.000001)',
'Create Transaction': 'Tạo Giao dịch',
'Sign Transaction': 'Ký Giao dịch',
'Recommended offline': 'Đề nghị sử dụng ngoại tuyến',
'Private key': 'Khóa riêng',
'Show/Hide': 'Hiện/Ẩn',
'Language': 'Ngôn ngữ',
'Sign Transaction Info': 'Để tránh tiết lộ khóa riêng của bạn trên mạng, đề nghị ký giao dịch trên thiết bị Android, iOS hoặc máy tính không kết nối Internet, từ đó thực hiện việc ký ngoại tuyến.',
'Broadcast Your Transaction': 'Phát sóng Giao dịch của bạn',
'into the Blockchain!': 'vào Blockchain!',
'Please enter the signed transaction code:': 'Vui lòng nhập mã giao dịch đã ký:',
'Settings': 'Cài đặt',
'The first transaction will returned to you as change': 'Giao dịch đầu tiên sẽ được trả lại cho bạn như là tiền thừa',
'The transaction below has been generated and encoded. It can be broadcasted once it has been signed.': 'Giao dịch dưới đây đã được tạo và mã hóa. Nó có thể được phát sóng sau khi đã được ký.',
'Sign': 'Ký',
'Broadcast': 'Phát sóng',
'The above transaction has been signed:': 'Giao dịch trên đã được ký:',
'Signed transaction': 'Giao dịch đã ký',
'Send your Bitcoin in the safest way.': 'Gửi Bitcoin của bạn một cách an toàn nhất.',
'100% Free,Open Source!Offline signature, the most secure Bitcoin transfer method': '100% Miễn phí, Mã nguồn mở! Chữ ký ngoại tuyến, phương pháp chuyển Bitcoin an toàn nhất',
'Start': 'Bắt đầu',
'Download the project file,unzip,then you can run the index.html locally with any browser on Windows,Linux,MAC OS...': 'Tải xuống tệp dự án, giải nén, sau đó bạn có thể chạy index.html trên máy cục bộ với bất kỳ trình duyệt nào trên Windows, Linux, MAC OS...',
'Choose the cryptocurrency you want to use.': 'Chọn loại tiền điện tử bạn muốn sử dụng.',
'1:Create transaction': '1:Tạo giao dịch',
'2:Sign transaction,It is recommended to sign on an offline device.': '2:Ký giao dịch, nên ký trên thiết bị không kết nối mạng.',
'3:Broadcast transaction': '3:Phát sóng giao dịch',
'Donate Bitcoin:': 'Quyên góp Bitcoin:',
'Run on iPhone/iPad': 'Chạy trên iPhone/iPad',
'on Windows,MAC,Linux,we just run index.html in browser online or offline,it doesnt need any addtional install.': 'Trên Windows, MAC, Linux, chỉ cần chạy index.html trong trình duyệt trực tuyến hoặc ngoại tuyến, không cần cài đặt thêm.',
'You need prepare a MAC computer in order to transfer project files through airpdrop.': 'Bạn cần chuẩn bị một máy tính MAC để chuyển các tệp dự án qua AirDrop.',
'1.This project is HTML+JS, so we need download a HTML viewer from Appstore.you can also use other html viewer APP in APPStore': '1.Dự án này sử dụng HTML+JS, vì vậy chúng ta cần tải xuống một trình xem HTML từ Appstore. Bạn cũng có thể sử dụng ứng dụng trình xem HTML khác trong APPStore.',
'2.drag project folder to our iPhone/iPad through Airdrop': '2.Kéo thư mục dự án vào iPhone/iPad của chúng ta thông qua AirDrop.',
'3.save folder to HTML Viewer': '3.Lưu thư mục vào Trình xem HTML',
'4.tab folder icon in HTML Viewer APP': '4.Chọn biểu tượng thư mục trong ứng dụng Trình xem HTML.',
'5.find index.html,and tab it.': '5.Tìm index.html và chọn nó.',
'6.Now we can run Signer on our iPhone and iPad Successfully!': '6.Bây giờ chúng ta có thể chạy Signer trên iPhone và iPad thành công!',
'Tips:iPhone camera can directly scan QR codes offline': 'Mẹo: Máy ảnh iPhone có thể quét mã QR trực tiếp ngoại tuyến.',
'7.If you want to sign offline, just turn on airplane mode.': '7.Nếu bạn muốn ký ngoại tuyến, chỉ cần bật chế độ máy bay.',
'8.Still worried?turn off the WIFI permit of APP.': '8.Vẫn còn lo lắng? Tắt quyền WIFI của ứng dụng.',
}
};
// Process translation
$(function() {
$('.translate').click(function() {
var lang = $(this).attr('id');
console.log("change language..");
$('.lang').each(function(index, item) {
$(this).text(arrLang[lang][$(this).attr('key')]);
});
});
});
</script>
</head>
<body>
<div id="wrap">
<!-- Fixed bar -->
<div id="header" class="bar navbar-default " role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<!--<span class="glyphicon glyphicon-pencil"></span>
<span class="glyphicon glyphicon-globe"></span>
<li><a href="#wallet" data-toggle="tab"><span class="glyphicon glyphicon-briefcase"></span> Wallet</a></li>
<li><a href="" target="_blank">Service Status</a></li>
-->
<li> <a href="#home" class="navbar-brand" id="homeBtn"><img src="images/logo.png" height="30"></a> </li>
<li> <a id="CurrentChainID" class="text-success" href="#" data-toggle="tab"> </a> </li>
<li><a href="#newTransaction" class="lang" key="1.Create Transaction" data-toggle="tab">1.Create Transaction</a></li>
<li><a href="#sign" class="lang" key="2.Sign" data-toggle="tab">2.Sign</a></li>
<li><a href="#broadcast" class="lang" key="3.Broadcast" data-toggle="tab">3.Broadcast</a></li>
<li><a href="#settings" class="lang" key="Chain Settings" data-toggle="tab"><span class="glyphicon glyphicon-wrench" ></span>Chain Settings</a></li>
<li><a href="#IOS" class="lang" key="IOS" data-toggle="tab">IOS</a></li>
<li><a href="#Tutorial" class="lang" key="How to use" data-toggle="tab">How to use</a></li>
<li class="nav-item">
<a class="nav-link" target="_blank" href="https://github.com/CryptoDappRun/AirWallet-Ethereum-Offline-Free-wallet">ETH Cold Wallet</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://github.com/CryptoDappRun/UniWallet" target="_blank">Uniwallet</a>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle lang" key="Tools" data-toggle="dropdown"><span class="glyphicon glyphicon-plus"></span>Tools<b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="#verify" data-toggle="tab"> Verify</a></li>
<li><a href="#newAddress" data-toggle="tab">Address</a></li>
<li><a href="#newSegWit" data-toggle="tab">SegWit Address</a></li>
<li><a href="#newMultiSig" data-toggle="tab">MultiSig Address</a></li>
<li><a href="#newTimeLocked" data-toggle="tab">Time Locked Address</a></li>
<li><a href="#newHDaddress" data-toggle="tab">HD Address</a></li>
<!--<li class="divider"></li>-->
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle lang" key="Help" data-toggle="dropdown"><span class="glyphicon glyphicon-info-sign"></span>Help<b class="caret"></b></a>
<ul class="dropdown-menu">
<!--<li><a href="#fees" data-toggle="tab">Fee Calculator</a></li>
<li role="separator" class="divider"></li>
-->
<li><a href="#about" data-toggle="tab">About</a></li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle lang" key="Language" data-toggle="dropdown"> Language<b class="caret"></b></a>
<ul class="dropdown-menu">
<!--<li><a href="#fees" data-toggle="tab">Fee Calculator</a></li>
<li role="separator" class="divider"></li>
-->
<li><a href="#" id="es" class="translate" data-toggle="tab">Español</a></li>
<li><a href="#" id="hi" class="translate" data-toggle="tab">Non</a></li>
<li><a href="#" id="bn" class="translate" data-toggle="tab">Bengali</a></li>
<li><a href="#" id="pt" class="translate" data-toggle="tab">Português</a></li>
<li><a href="#" id="ru" class="translate" data-toggle="tab">Russian</a></li>
<li><a href="#" id="ja" class="translate" data-toggle="tab">Japanese</a></li>
<li><a href="#" id="tr" class="translate" data-toggle="tab">Turkish</a></li>
<li><a href="#" id="ko" class="translate" data-toggle="tab">Korean</a></li>
<li><a href="#" id="fr" class="translate" data-toggle="tab">French</a></li>
<li><a href="#" id="zh" class="translate" data-toggle="tab">中文</a></li>
<li><a href="#" id="vi" class="translate" data-toggle="tab">Vietnamese</a></li>
</ul>
</li>
</ul>
</div>
</div>
</div>
<div id="content" class="container">
<noscript class="alert alert-danger center-block"><span class="glyphicon glyphicon-exclamation-sign"></span> This page uses javascript, please enable it to continue!</noscript>
<div class="tab-content">
<div class="tab-pane tab-content active" id="home">
<div class="row">
<div class="col-md-12">
</div>
</div>
<div class="jumbotron">
<h1 class="lang" key="Bitcoin Signer">Bitcoin Signer</h1>
<h3 class="lang" key="Send your Bitcoin in the safest way.">Send your Bitcoin in the safest way.</h3>
<p class="lang" key="100% Free,Open Source!Offline signature, the most secure Bitcoin transfer method">100% Free,Open Source!Offline signature, the most secure Bitcoin transfer method</p>
<p><img src="images/Bitcoin.png?raw=true"><img src="images/Litecoin.png?raw=true"><img src="images/Dogecoin.png?raw=true"></p>
<p><img src="images/windows.png?raw=true"><img src="images/macos.png?raw=true"><img src="images/ios.png?raw=true"><img src="images/android.png?raw=true"><img src="images/linux.png?raw=true"></p>
<p><a class="btn btn-primary btn-lg lang" key="Start" href="#newTransaction" role="button">Start</a></p>
</div>
<hr>
<div class="row">
<div class="col-md-4">
<h3><span class="glyphicon glyphicon-ok"></span> Open Source</h3>
<p>Signer is an open source web based wallet written in javascript and released under the <a href="LICENSE">MIT license</a> which means it's free to use and edit.</p>
</div>
<div class="col-md-4">
<h3><span class="glyphicon glyphicon-fullscreen"></span> MultiSig</h3>
<p>We offer a fully transparent <a href="#newMultiSig">multisig</a> solution which works seamlessly offline and with other bitcoin clients.</p>
</div>
<div class="col-md-4">
<h3><span class="glyphicon glyphicon-bitcoin"></span> Raw Transactions</h3>
<p><a href="#newTransaction">Create</a>, <a href="#verify">verify</a>, <a href="#sign">sign</a> and <a href="#broadcast">broadcast</a> custom raw transactions online with advanced features and minimal effort!</p>
</div>
</div>
<div class="row">
<div class="col-md-4">
<h3><span class="glyphicon glyphicon-piggy-bank"></span> Wallet</h3>
<p>Quick access to an <a href="#wallet">online wallet</a> where only you have access to your own private keys & can <a href="#fees">calculate your own fee</a>!</p>
</div>
<div class="col-md-4">
<h3><span class="glyphicon glyphicon-globe"></span> Addresses</h3>
<p>We support <a href="#newAddress">regular addresses</a>, <a href="#newMultiSig">multisig</a>, <a href="#newSegWit">segwit / bech32</a> and stealth all with access to your own private keys!</p>
</div>
<div class="col-md-4">
<h3><span class="glyphicon glyphicon-wrench"></span> Development</h3>
<p>Use what we've built to write your own projects! See our documention (coming soon), or contribute at <a href="https://github.com/CryptoDappRun/Bitcoin-Signer-Wallet">github</a>.</p>
</div>
</div>
</div>
<div class="tab-pane tab-content" id="wallet">
<div class="row">
<div class="col-md-12">
<h2>Open Wallet <small> browser based bitcoin wallet</small></h2>
<div id="openLogin">
<form class="form-signin" role="form" action="javascript:;">
<p>Use the form below to open a wallet and begin using this service.</p>
<div class="alert alert-warning">
<b>Notice</b>: Different email address and password combination will open different wallets, be careful when entering your details as lost accounts can not be recovered!
</div>
<input id="openEmail" type="email" class="form-control" placeholder="Email address" required autofocus>
<input id="openPass" type="password" class="form-control" placeholder="Password" required>
<input id="openPassConfirm" type="password" class="form-control" placeholder="Password confirm" required>
<br>
<div>
<a href="javascript:;" class="optionsCollapse"><div class="well well-sm"><span class="glyphicon glyphicon-collapse-down" id="glyphcollapse"></span> Advanced Options</div></a>
<div class="hidden optionsAdvanced">
<label>Segregated Witness Address</label>
<p class="checkbox">
<label><input type="checkbox" id="walletSegwit" class="checkbox-inline" checked> Use a segwit address instead of a regular address. <span class="text-muted"><i>(recommended)</i></span></label></label> <br>
<label><input type="radio" id="walletSegwitp2sh" class="walletSegwitType" name="walletSegWitType" value="p2sh" checked> p2sh address</label> <br>
<label><input type="radio" id="walletSegwitBech32" class="walletSegwitType" name="walletSegWitType" value="bech32"> bech32 address</label>
</p>
<label>Enable Replace by Fee (RBF)</label>
<p class="checkbox">
<label><input type="checkbox" id="walletRBF" class="checkbox-inline" checked> Enable RBF on all transactions, allowing you to manually raise the transaction fee later if required. <span class="text-muted"><i>(recommended)</i></span></label></label>
</p>
</div>
</div>
<div id="openLoginStatus" class="alert alert-danger hidden"></div>
<button id="openBtn" class="btn btn-primary" type="submit">Submit</button>
</form>
</div>
<div id="openWallet" class="hidden">
<div class="row">
<div class="col-md-12">
<p><span style="float:right;"><a href="javascript:;" id="walletLogout"><span class="glyphicon glyphicon-log-out"></span> Logout</a></span>Welcome to your wallet, enjoy your stay!</p>
</div>