mark most of the string as translatable (except FAQ, release note)

This commit is contained in:
Michael Muré 2014-07-02 23:49:26 +02:00
parent 6b3b7666af
commit 31491b1d20
8 changed files with 200 additions and 180 deletions

View file

@ -9343,7 +9343,7 @@ body { font-family: Arial; background-image: url('images/diamonds.png'); height:
.seedpoint { width: 6px; height: 6px; display: block; border-radius: 3px; background-color: #80CF80; position: absolute; z-index: 10; }
#seedSkipper { font-size: 11px; text-align: center; line-height: 14px;}
.skipMessage { margin-top: 8px; }
#skipMessage { margin-top: 8px; }
#generate #mousemovelimit { font-size: 16px; color: #FFF; }
#rightArea { position: absolute; right: 66px; top: 62px; width: 170px; }
@ -9677,29 +9677,29 @@ h1 { margin: 0px; height: 91px; }
</div>
<div id="currencyddl" class="hide">
Choose currency :
<select id="currency" onchange="janin.currency.useCurrency(this.selectedIndex);"></select>
<span id="choosecurrency" class="i18n">Choose currency</span> :
<select id="currency" onchange="janin.currency.useCurrency(this.selectedIndex);"></select>
</div>
<div id="seedpoolarea"><textarea rows="16" cols="62" id="seedpool"></textarea></div>
<div class="menu" id="menu">
<div class="tab selected" id="singlewallet" onclick="ninja.tabSwitch(this);">Single Wallet</div>
<div class="tab" id="paperwallet" onclick="ninja.tabSwitch(this);">Paper Wallet</div>
<div class="tab" id="bulkwallet" onclick="ninja.tabSwitch(this);">Bulk Wallet</div>
<div class="tab" id="brainwallet" onclick="ninja.tabSwitch(this);">Brain Wallet</div>
<div class="tab" id="vanitywallet" onclick="ninja.tabSwitch(this);">Vanity Wallet</div>
<div class="tab" id="detailwallet" onclick="ninja.tabSwitch(this);">Wallet Details</div>
<div class="tab" id="donate" onclick="ninja.tabSwitch(this);">Support</div>
<div class="tab i18n selected" id="singlewallet" onclick="ninja.tabSwitch(this);">Single Wallet</div>
<div class="tab i18n" id="paperwallet" onclick="ninja.tabSwitch(this);">Paper Wallet</div>
<div class="tab i18n" id="bulkwallet" onclick="ninja.tabSwitch(this);">Bulk Wallet</div>
<div class="tab i18n" id="brainwallet" onclick="ninja.tabSwitch(this);">Brain Wallet</div>
<div class="tab i18n" id="vanitywallet" onclick="ninja.tabSwitch(this);">Vanity Wallet</div>
<div class="tab i18n" id="detailwallet" onclick="ninja.tabSwitch(this);">Wallet Details</div>
<div class="tab i18n" id="donate" onclick="ninja.tabSwitch(this);">Support</div>
</div>
<div id="wallets">
<div id="singlearea" class="walletarea">
<div id="initBanner">
<span id="generatelabelbitcoinaddress">Generating new Address...</span><br />
<span id="generatelabelmovemouse">MOVE your mouse around to add some extra randomness... </span><span id="mousemovelimit"></span><br />
<span id="generatelabelkeypress">OR type some random characters into this textbox</span> <input type="text" id="generatekeyinput" onkeypress="ninja.seeder.seedKeyPress(event);" /><br />
<span id="generatelabelbitcoinaddress" class="i18n">Generating new Address...</span><br />
<span id="generatelabelmovemouse" class="i18n">MOVE your mouse around to add some extra randomness... </span><span id="mousemovelimit"></span><br />
<span id="generatelabelkeypress" class="i18n">OR type some random characters into this textbox</span> <input type="text" id="generatekeyinput" onkeypress="ninja.seeder.seedKeyPress(event);" /><br />
<div id="seedpooldisplay"></div>
<div id="rightArea">
@ -9709,7 +9709,7 @@ h1 { margin: 0px; height: 91px; }
<div id="seedSkipper">
<a href="#" class="nicerButton 100pxwidth" onClick="ninja.seeder.seedCount = ninja.seeder.seedLimit; ninja.seeder.seed();">Skip &raquo;</a>
<p class="skipMessage">You may skip this step if you do not plan to use the random key generator.</p>
<p id="skipMessage" class="i18n">You may skip this step if you do not plan to use the random key generator.</p>
</div>
</div>
</div>
@ -9723,58 +9723,58 @@ h1 { margin: 0px; height: 91px; }
<div id="keyarea" class="keyarea">
<div class="public">
<div class="pubaddress">
<span class="label" id="singlelabelbitcoinaddress">Public Address</span>
<span class="label" id="singlelabelbitcoinaddress" class="i18n">Public Address</span>
</div>
<div id="qrcode_public" class="qrcode_public"></div>
<div class="pubaddress">
<span class="output" id="btcaddress"></span>
</div>
<div id="singleshare">SHARE</div>
<div id="singleshare" class="i18n">SHARE</div>
</div>
<div class="private">
<div class="privwif">
<span class="label" id="singlelabelprivatekey">Private Key (Wallet Import Format)</span>
<span class="label i18n" id="singlelabelprivatekey">Private Key (Wallet Import Format)</span>
</div>
<div id="qrcode_private" class="qrcode_private"></div>
<div class="privwif">
<span class="output" id="btcprivwif"></span>
</div>
<div id="singlesecret">SECRET</div>
<div id="singlesecret" class="i18n">SECRET</div>
</div>
</div>
<div id="singlesafety">
<div class="firstHalfSingleSafety">
<h3>Step 0. Follow the security checklist recommendation</h3>
<p>
<h3 id="securitystep0title" class="i18n">Step 0. Follow the security checklist recommendation</h3>
<p id="securitystep0" class="i18n">
First step is to <strong>download</strong> this website from <a href="https://github.com/MichaelMure/PaperWallet/archive/master.zip">Github</a> and open the index.html file directly from your computer. It's just too easy to sneak some evil code in the 6000+ lines of javascript to leak your private key, and you don't want to see your fund stolen. Code version control make it much easier to cross-check what actually run. For extra security, <strong>unplug your Internet access</strong> while generating your wallet.
</p>
<h3>Step 1. Generate new address</h3>
<p>
<h3 id="securitystep1title" class="i18n">Step 1. Generate new address</h3>
<p id="securitystep1" class="i18n">
Choose your currency and click on the "Generate new address" button.
</p>
<h3>Step 2. Print the Paper Wallet</h3>
<p>
<h3 id="securitystep2title" class="i18n">Step 2. Print the Paper Wallet</h3>
<p id="securitystep2" class="i18n">
Click the Paper Wallet tab and print the page on high quality setting. <strong>Never save the page as a PDF file to print it later since a file is more likely to be hacked than a piece of paper.</strong>
</p>
<h3>Step 3. Fold the Paper Wallet</h3>
<p>
<h3 id="securitystep3title" class="i18n">Step 3. Fold the Paper Wallet</h3>
<p id="securitystep3" class="i18n">
Fold your new Paper wallet following the lines.
<img src="images/foldinginstructions.png" alt="Fold in half lengthwise, and then in three widthwise." /><br />
You can insert one side inside the other to lock the wallet.
</p>
<h3>Step 4. Share your public key</h3>
<p>
<h3 id="securitystep4title" class="i18n">Step 4. Share your public key</h3>
<p id="securitystep4" class="i18n">
Use your public key to receive money from other crypto-currency users. You can share your public keys as much as you want.
</p>
<h3>Step 5. Keep your private key secret</h3>
<p>
<h3 id="securitystep5title" class="i18n">Step 5. Keep your private key secret</h3>
<p id="securitystep5" class="i18n">
The private key is literally the keys to your coins, if someone was to obtain it, they could withdraw the funds currently in the wallet, and any funds that might be deposited in that wallet.
</p>
<p>
<strong>Please test spending a small amount before receiving any large payments.</strong><br /><br />
<strong id="securitystep6" class="i18n">Please test spending a small amount before receiving any large payments.</strong><br /><br />
</p>
@ -9783,21 +9783,21 @@ h1 { margin: 0px; height: 91px; }
<img class="frontPageImage" src="images/overview.png" alt="Overview image of 4 paper wallet" />
<div class="securityChecklist">
<b>Security Checklist :</b>
<b id="securitychecktitle" class="i18n">Security Checklist :</b>
<ul>
<li id="envSecurityCheck"></li>
<li id="browserSecurityCheck"></li>
<li>
<li id="securitychecklivecd" class="i18n">
Are you using a secure operating system guaranteed to be free of spyware and viruses, for example, an Ubuntu LiveCD?
</li>
</ul>
</div>
<div class="supportedCurrenciesChecklist">
<b>Supported currencies :</b>
<b id="supportedcurrencylbl" class="i18n">Supported currencies :</b>
<div id="supportedcurrencies"></div>
</div>
</div>
@ -9886,7 +9886,7 @@ Walletgenerator.net use the same security measure as its original. All-in-one ht
</div>
</div>
<div class="body">
<span class="label" id="bulklabelcsv">Comma Separated Values:</span> <span class="format" id="bulklabelformat">Index,Address,Private Key (WIF)</span>
<span class="label i18n" id="bulklabelcsv">Comma Separated Values:</span> <span class="format" id="bulklabelformat">Index,Address,Private Key (WIF)</span>
<textarea rows="20" cols="88" id="bulktextarea"></textarea>
</div>
</div>
@ -9894,16 +9894,16 @@ Walletgenerator.net use the same security measure as its original. All-in-one ht
<div id="brainarea" class="walletarea">
<div id="braincommands" class="commands">
<div class="row">
<span id="brainlabelenterpassphrase" class="label"><label for="brainpassphrase">Enter Passphrase: </label></span>
<span id="brainlabelenterpassphrase" class="label"><label id="brainlabelenterpassphraselbl" class="i18n" for="brainpassphrase">Enter Passphrase: </label></span>
<input tabindex="1" type="password" id="brainpassphrase" value="" onfocus="this.select();" onkeypress="if (event.keyCode == 13) ninja.wallets.brainwallet.view();" />
<span><label id="brainlabelshow" for="brainpassphraseshow">Show?</label> <input type="checkbox" id="brainpassphraseshow" onchange="ninja.wallets.brainwallet.showToggle(this);" /></span>
<span class="print"><input type="button" name="print" id="brainprint" value="Print" onclick="window.print();" /></span>
</div>
<div class="row extra">
<span class="label" id="brainlabelconfirm"><label for="brainpassphraseconfirm">Confirm Passphrase: </label></span>
<span class="label" id="brainlabelconfirm"><label id="brainlabelconfirmlbl" class="i18n" for="brainpassphraseconfirm">Confirm Passphrase: </label></span>
<input tabindex="2" type="password" id="brainpassphraseconfirm" value="" onfocus="this.select();" onkeypress="if (event.keyCode == 13) ninja.wallets.brainwallet.view();" />
<span><input tabindex="3" type="button" id="brainview" value="View" onclick="ninja.wallets.brainwallet.view();" /></span>
<span id="brainalgorithm" class="notes right">Algorithm: SHA256(passphrase)</span>
<span id="brainalgorithm" class="notes right i18n">Algorithm: SHA256(passphrase)</span>
</div>
<div class="row extra"><span id="brainwarning"></span></div>
<div class="row extra errorMsg"><span id="brainerror"></span></div>
@ -9912,14 +9912,14 @@ Walletgenerator.net use the same security measure as its original. All-in-one ht
<div class="public">
<div id="brainqrcodepublic" class="qrcode_public"></div>
<div class="pubaddress">
<span class="label" id="brainlabelbitcoinaddress">Public Address:</span>
<span class="label i18n" id="brainlabelbitcoinaddress">Public Address:</span>
<span class="output" id="brainbtcaddress"></span>
</div>
</div>
<div class="private">
<div id="brainqrcodeprivate" class="qrcode_private"></div>
<div class="privwif">
<span class="label" id="brainlabelprivatekey">Private Key (Wallet Import Format):</span>
<span class="label i18n" id="brainlabelprivatekey">Private Key (Wallet Import Format):</span>
<span class="output" id="brainbtcprivwif"></span>
</div>
</div>
@ -9928,60 +9928,60 @@ Walletgenerator.net use the same security measure as its original. All-in-one ht
<div id="vanityarea" class="walletarea">
<div id="vanitystep1label" class="commands expandable" onclick="ninja.wallets.vanitywallet.openCloseStep(1);">
<span><label id="vanitylabelstep1">Step 1 - Generate your "Step1 Key Pair"</label> <input type="button" id="vanitynewkeypair"
<span><label id="vanitylabelstep1" class="i18n">Step 1 - Generate your "Step1 Key Pair"</label> <input type="button" id="vanitynewkeypair"
value="Generate" onclick="ninja.wallets.vanitywallet.generateKeyPair();" /></span>
<div id="vanitystep1icon" class="more"></div>
</div>
<div id="vanitystep1area">
<div>
<span class="label" id="vanitylabelstep1publickey">Step 1 Public Key:</span>
<span class="label i18n" id="vanitylabelstep1publickey">Step 1 Public Key:</span>
<div class="output pubkeyhex" id="vanitypubkey"></div>
<br /><div class="notes" id="vanitylabelstep1pubnotes">Copy and paste the above into the Your-Part-Public-Key field in the Vanity Pool Website.</div>
<br /><div class="notes i18n" id="vanitylabelstep1pubnotes">Copy and paste the above into the Your-Part-Public-Key field in the Vanity Pool Website.</div>
</div>
<div>
<span class="label" id="vanitylabelstep1privatekey">Step 1 Private Key:</span>
<span class="label i18n" id="vanitylabelstep1privatekey">Step 1 Private Key:</span>
<span class="output" id="vanityprivatekey"></span>
<br /><div class="notes" id="vanitylabelstep1privnotes">Copy and paste the above Private Key field into a text file. Ideally save to an encrypted drive. You will need this to retrieve the Private Key once the Pool has found your prefix.</div>
<br /><div class="notes i18n" id="vanitylabelstep1privnotes">Copy and paste the above Private Key field into a text file. Ideally save to an encrypted drive. You will need this to retrieve the Private Key once the Pool has found your prefix.</div>
</div>
</div>
<div id="vanitystep2label" class="expandable" onclick="ninja.wallets.vanitywallet.openCloseStep(2);">
<span id="vanitylabelstep2calculateyourvanitywallet">Step 2 - Calculate your Vanity Wallet</span>
<span id="vanitylabelstep2calculateyourvanitywallet" class="i18n">Step 2 - Calculate your Vanity Wallet</span>
<div id="vanitystep2icon" class="more"></div>
</div>
<div id="vanitystep2inputs">
<div>
<span id="vanitylabelenteryourpart">Enter Your Part Private Key (generated in Step 1 above and previously saved):</span>
<br /><span class="notes" id="vanitylabelnote1">[NOTE: this input box can accept a public key or private key]</span>
<span id="vanitylabelenteryourpart" class="i18n">Enter Your Part Private Key (generated in Step 1 above and previously saved):</span>
<br /><span class="notes i18n" id="vanitylabelnote1">[NOTE: this input box can accept a public key or private key]</span>
</div>
<div><textarea id="vanityinput1" rows="2" cols="90" onfocus="this.select();"></textarea></div>
<div>
<span id="vanitylabelenteryourpoolpart">Enter Pool Part Private Key (from Vanity Pool):</span>
<br /><span class="notes" id="vanitylabelnote2">[NOTE: this input box can accept a public key or private key]</span>
<span id="vanitylabelenteryourpoolpart" class="i18n">Enter Pool Part Private Key (from Vanity Pool):</span>
<br /><span class="notes i18n" id="vanitylabelnote2">[NOTE: this input box can accept a public key or private key]</span>
</div>
<div><textarea id="vanityinput2" rows="2" cols="90" onfocus="this.select();"></textarea></div>
<div>
<label for="vanityradioadd" id="vanitylabelradioadd">Add</label> <input type="radio" id="vanityradioadd" name="vanityradio" value="add" checked />
<label for="vanityradiomultiply" id="vanitylabelradiomultiply">Multiply</label> <input type="radio" id="vanityradiomultiply" name="vanityradio" value="multiply" />
<label for="vanityradioadd" id="vanitylabelradioadd" class="i18n">Add</label> <input type="radio" id="vanityradioadd" name="vanityradio" value="add" checked />
<label for="vanityradiomultiply" id="vanitylabelradiomultiply" class="i18n">Multiply</label> <input type="radio" id="vanityradiomultiply" name="vanityradio" value="multiply" />
</div>
<div><input type="button" id="vanitycalc" value="Calculate Vanity Wallet" onclick="ninja.wallets.vanitywallet.addKeys();" /></div>
</div>
<div id="vanitystep2area">
<div>
<span class="label" id="vanitylabelbitcoinaddress">Vanity Public Address:</span>
<span class="label i18n" id="vanitylabelbitcoinaddress">Vanity Public Address:</span>
<span class="output" id="vanityaddress"></span>
<br /><div class="notes" id="vanitylabelnotesbitcoinaddress">The above is your new address that should include your required prefix.</div>
<br /><div class="notes i18n" id="vanitylabelnotesbitcoinaddress">The above is your new address that should include your required prefix.</div>
</div>
<div>
<span class="label" id="vanitylabelpublickeyhex">Vanity Public Key (HEX):</span>
<span class="label i18n" id="vanitylabelpublickeyhex">Vanity Public Key (HEX):</span>
<span class="output pubkeyhex" id="vanitypublickeyhex"></span>
<br /><div class="notes" id="vanitylabelnotespublickeyhex">The above is the Public Key in hexadecimal format. </div>
<br /><div class="notes i18n" id="vanitylabelnotespublickeyhex">The above is the Public Key in hexadecimal format.</div>
</div>
<div>
<span class="label" id="vanitylabelprivatekey">Vanity Private Key (WIF):</span>
<span class="label i18n" id="vanitylabelprivatekey">Vanity Private Key (WIF):</span>
<span class="output" id="vanityprivatekeywif"></span>
<br /><div class="notes" id="vanitylabelnotesprivatekey">The above is the Private Key to load into your wallet. </div>
<br /><div class="notes i18n" id="vanitylabelnotesprivatekey">The above is the Private Key to load into your wallet.</div>
</div>
</div>
</div>
@ -9991,7 +9991,7 @@ Walletgenerator.net use the same security measure as its original. All-in-one ht
<div class="row extra qrzone">
<span class="qrinput">
<label id="detaillabelenterprivatekey" for="detailprivkey">Enter Private Key</label>
<label id="detaillabelenterprivatekey" for="detailprivkey" class="i18n">Enter Private Key</label>
<span class="qrcodeinputwrapper">
<input type="text" id="detailprivkey" value="" placeholder="Enter a private key, or click the QR icon to scan" autocomplete="off" onFocus="this.select();" onKeyPress="if (event.keyCode == 13) ninja.wallets.detailwallet.viewDetails();" />
@ -10008,9 +10008,9 @@ Walletgenerator.net use the same security measure as its original. All-in-one ht
<div id="paperqrscanner">
<div class="background"></div>
<div id="mainbody" class="dialog instructionsarea">
<h2>Scan QR code using your camera</h2>
<div id="paperqrnotsupported" class="hide redColor">Sorry, but your web browser does not support the HTML5 camera controls. Try using a recent version of Firefox (recommended), Chrome or Opera.</div>
<div id="paperqrpermissiondenied" class="hide redColor">
<h2 id="qrcaminstructiontitle" class="i18n">Scan QR code using your camera</h2>
<div id="paperqrnotsupported" class="hide redColor i18n">Sorry, but your web browser does not support the HTML5 camera controls. Try using a recent version of Firefox (recommended), Chrome or Opera.</div>
<div id="paperqrpermissiondenied" class="hide redColor i18n">
<p>Permission denied. Your browser should display a message requesting access to your camera. Please click the "Allow" button to enable the camera.</p>
</div>
<div id="paperqrerror" class="redColor"></div>
@ -10019,84 +10019,84 @@ Walletgenerator.net use the same security measure as its original. All-in-one ht
</div>
</div>
<div id="detailbip38commands">
<span><label id="detaillabelpassphrase">Enter BIP38 Passphrase</label> <input type="text" id="detailprivkeypassphrase" value="" onfocus="this.select();" onkeypress="if (event.keyCode == 13) ninja.wallets.detailwallet.viewDetails();" /></span>
<span><label id="detaillabelpassphrase" class="i18n">Enter BIP38 Passphrase</label> <input type="text" id="detailprivkeypassphrase" value="" onfocus="this.select();" onkeypress="if (event.keyCode == 13) ninja.wallets.detailwallet.viewDetails();" /></span>
<span><input type="button" id="detaildecrypt" value="Decrypt BIP38" onclick="ninja.wallets.detailwallet.viewDetails();" /></span>
</div>
</div>
<div id="detailkeyarea">
<div class="notes">
<span id="detaillabelnote1">Your Private Key is a unique secret number that only you know. It can be encoded in a number of different formats. Below we show the Public Address and Public Key that corresponds to your Private Key as well as your Private Key in the most popular encoding formats (WIF, WIFC, HEX, B64).</span>
<span id="detaillabelnote1" class="i18n">Your Private Key is a unique secret number that only you know. It can be encoded in a number of different formats. Below we show the Public Address and Public Key that corresponds to your Private Key as well as your Private Key in the most popular encoding formats (WIF, WIFC, HEX, B64).</span>
<br /><br />
</div>
<div class="pubqr">
<div class="item">
<span class="label" id="detaillabelbitcoinaddress">Public Address</span>
<span class="label i18n" id="detaillabelbitcoinaddress">Public Address</span>
<div id="detailqrcodepublic" class="qrcode_public"></div>
<span class="output" id="detailaddress"></span>
</div>
<div class="item right">
<span class="label" id="detaillabelbitcoinaddresscomp">Public Address Compressed</span>
<span class="label i18n" id="detaillabelbitcoinaddresscomp">Public Address Compressed</span>
<div id="detailqrcodepubliccomp" class="qrcode_public"></div>
<span class="output" id="detailaddresscomp"></span>
</div>
</div>
<br /><br />
<div class="item clear">
<span class="label" id="detaillabelpublickey">Public Key (130 characters [0-9A-F]):</span>
<span class="label i18n" id="detaillabelpublickey">Public Key (130 characters [0-9A-F]):</span>
<span class="output pubkeyhex" id="detailpubkey"></span>
</div>
<div class="item">
<span class="label" id="detaillabelpublickeycomp">Public Key (compressed, 66 characters [0-9A-F]):</span>
<span class="label i18n" id="detaillabelpublickeycomp">Public Key (compressed, 66 characters [0-9A-F]):</span>
<span class="output" id="detailpubkeycomp"></span>
</div>
<hr />
<div class="privqr">
<div class="item">
<span class="label"><span id="detaillabelprivwif">Private Key WIF<br />51 characters base58, starts with a</span> <span id="detailwifprefix">'5'</span></span>
<span class="label"><span id="detaillabelprivwif" class="i18n">Private Key WIF<br />51 characters base58, starts with a</span> <span id="detailwifprefix">'5'</span></span>
<div id="detailqrcodeprivate" class="qrcode_private"></div>
<span class="output" id="detailprivwif"></span>
</div>
<div class="item right">
<span class="label"><span id="detaillabelprivwifcomp">Private Key WIF Compressed<br />52 characters base58, starts with a</span> <span id="detailcompwifprefix">'K' or 'L'</span></span>
<span class="label"><span id="detaillabelprivwifcomp" class="i18n">Private Key WIF Compressed<br />52 characters base58, starts with a</span> <span id="detailcompwifprefix">'K' or 'L'</span></span>
<div id="detailqrcodeprivatecomp" class="qrcode_private"></div>
<span class="output" id="detailprivwifcomp"></span>
</div>
</div>
<br /><br />
<div class="item clear">
<span class="label" id="detaillabelprivhex">Private Key Hexadecimal Format (64 characters [0-9A-F]):</span>
<span class="label i18n" id="detaillabelprivhex">Private Key Hexadecimal Format (64 characters [0-9A-F]):</span>
<span class="output" id="detailprivhex"></span>
</div>
<div class="item">
<span class="label" id="detaillabelprivb64">Private Key Base64 (44 characters):</span>
<span class="label i18n" id="detaillabelprivb64">Private Key Base64 (44 characters):</span>
<span class="output" id="detailprivb64"></span>
</div>
<div class="item displayNone" id="detailmini">
<span class="label" id="detaillabelprivmini">Private Key Mini Format (22, 26 or 30 characters, starts with an 'S'):</span>
<span class="label i18n" id="detaillabelprivmini">Private Key Mini Format (22, 26 or 30 characters, starts with an 'S'):</span>
<span class="output" id="detailprivmini"></span>
</div>
<div class="item displayNone" id="detailb6">
<span class="label" id="detaillabelprivb6">Private Key Base6 Format (99 characters [0-5]):</span>
<span class="label i18n" id="detaillabelprivb6">Private Key Base6 Format (99 characters [0-5]):</span>
<span class="output" id="detailprivb6"></span>
</div>
<div class="item displayNone" id="detailbip38">
<span class="label" id="detaillabelprivbip38">Private Key BIP38 Format (58 characters base58, starts with '6P'):</span>
<span class="label i18n" id="detaillabelprivbip38">Private Key BIP38 Format (58 characters base58, starts with '6P'):</span>
<span class="output" id="detailprivbip38"></span>
</div>
</div>
<div class="faqs">
<div id="detailfaq1" class="faq">
<div id="detailq1" class="question" onclick="ninja.wallets.detailwallet.openCloseFaq(1);">
<span id="detaillabelq1">How do I make a wallet using dice? What is B6?</span>
<span id="detaillabelq1" class="i18n">How do I make a wallet using dice? What is B6?</span>
<div id="detaile1" class="more"></div>
</div>
<div id="detaila1" class="answer">An important part of creating a crypto-currency wallet is ensuring the random numbers used to create the wallet are truly random. Physical randomness is better than computer generated pseudo-randomness. The easiest way to generate physical randomness is with dice. To create a crypto-currency private key you only need one six sided die which you roll 99 times. Stopping each time to record the value of the die. When recording the values follow these rules: 1=1, 2=2, 3=3, 4=4, 5=5, 6=0. By doing this you are recording the big random number, your private key, in B6 or base 6 format. You can then enter the 99 character base 6 private key into the text field above and click View Details. You will then see the public address associated with your private key. You should also make note of your private key in WIF format since it is more widely used.</div>
<div id="detaila1" class="answer i18n">An important part of creating a crypto-currency wallet is ensuring the random numbers used to create the wallet are truly random. Physical randomness is better than computer generated pseudo-randomness. The easiest way to generate physical randomness is with dice. To create a crypto-currency private key you only need one six sided die which you roll 99 times. Stopping each time to record the value of the die. When recording the values follow these rules: 1=1, 2=2, 3=3, 4=4, 5=5, 6=0. By doing this you are recording the big random number, your private key, in B6 or base 6 format. You can then enter the 99 character base 6 private key into the text field above and click View Details. You will then see the public address associated with your private key. You should also make note of your private key in WIF format since it is more widely used.</div>
</div>
</div>
</div>
<div id="donatearea" class="walletarea">
<div>To support the development of this wallet generator, you can donate to the following address:</div>
<div id="donatetextfooter" class="i18n">To support the development of this wallet generator, you can donate to the following address:</div>
<div id="donatelist"></div>
<div id="donateqrcode"></div>
<div id="donateinfo"></div>
@ -10167,7 +10167,7 @@ Walletgenerator.net use the same security measure as its original. All-in-one ht
<div id="footer" class="footer">
<div>
<span class="item"><a href="#" onclick="ninja.tabSwitch(document.getElementById('donate'));">Support WalletGenerator.net</a></span>
<span class="item"><a href="https://github.com/MichaelMure/WalletGenerator.net" target="_blank" id="footerlabelgithub">Download (GitHub Repository)</a></span>
<span class="item"><a href="https://github.com/MichaelMure/WalletGenerator.net" target="_blank" id="footerlabelgithub" class="i18n">Download (GitHub Repository)</a></span>
<span class="item"><a href="https://twitter.com/WalletGenerator">@WalletGenerator</a></span>
</div>
<div class="copyright">
@ -10940,10 +10940,10 @@ ninja.envSecurityCheck = function() {
switch(window.location.protocol) {
case 'http:':
case 'https:':
innerHTML = '<span style="color: #990000;">You appear to be running this generator off of a live website, which is not recommended for creating valuable wallets. Instead, use the download link at the bottom of this page to download the ZIP file from GitHub and run this generator offline as a \'local\' HTML file.</span>';
innerHTML = '<span style="color: #990000;">' + ninja.translator.get("securitychecklistofflineNOK") + '</span>';
break;
case 'file:':
innerHTML = '<span style="color: #009900;">You are running this generator from your own download.</span>';
innerHTML = '<span style="color: #009900;">' + ninja.translator.get("securitychecklistofflineOK") + '</span>';
break;
default:
}
@ -10953,9 +10953,9 @@ ninja.envSecurityCheck = function() {
ninja.browserSecurityCheck = function() {
var innerHTML = "";
if (window.crypto && window.crypto.getRandomValues) {
innerHTML = '<span style="color: #009900;">Your browser is capable of generating cryptographically random keys using window.crypto.getRandomValues</span>';
innerHTML = '<span style="color: #009900;">' + ninja.translator.get("securitychecklistrandomOK") + '</span>';
} else {
innerHTML = '<span style="color: #990000;">Your browser does NOT support window.crypto.getRandomValues(), which is important for generating the most secure random numbers possible. Please use a more modern browser.</span>';
innerHTML = '<span style="color: #990000;">' + ninja.translator.get("securitychecklistrandomNOK") + '</span>';
}
document.getElementById('browserSecurityCheck').innerHTML = innerHTML;
}
@ -11068,6 +11068,11 @@ ninja.translator = {
"vanityalertinvalidinputpublickeysmatch",
"vanityprivatekeyonlyavailable",
"vanityalertinvalidinputcannotmultiple",
"securitychecklistrandomOK",
"securitychecklistrandomNOK",
"securitychecklistofflineNOK",
"securitychecklistofflineOK",
"paperwalletback",
],
translations: {
@ -11087,7 +11092,12 @@ ninja.translator = {
"vanityalertinvalidinputpublickeysmatch": "Invalid input. The Public Key of both entries match. You must input two different keys.",
"vanityalertinvalidinputcannotmultiple": "Invalid input. Cannot multiply two public keys. Select 'Add' to add two public keys to get a bitcoin address.",
"vanityprivatekeyonlyavailable": "Only available when combining two private keys",
"vanityalertinvalidinputprivatekeysmatch": "Invalid input. The Private Key of both entries match. You must input two different keys."
"vanityalertinvalidinputprivatekeysmatch": "Invalid input. The Private Key of both entries match. You must input two different keys.",
"securitychecklistrandomOK": "Your browser is capable of generating cryptographically random keys using window.crypto.getRandomValues",
"securitychecklistrandomNOK": "Your browser does NOT support window.crypto.getRandomValues(), which is important for generating the most secure random numbers possible. Please use a more modern browser.",
"securitychecklistofflineNOK": "You appear to be running this generator off of a live website, which is not recommended for creating valuable wallets. Instead, use the download link at the bottom of this page to download the ZIP file from GitHub and run this generator offline as a \'local\' HTML file.",
"securitychecklistofflineOK": "You are running this generator from your own download.",
"paperwalletback": "<ul><li>To deposit funds to this paper wallet, send cryptocurrency to its public address, anytime.</li><li>Verify your balance by searching for the public address using a blockain explorer such as blockchain.info.</li><li><b>DO NOT REVEAL THE PRIVATE KEY</b> until you are ready to import the balance on this wallet to a cryptocurrency client, exchange or online wallet.</li></ul><b>Amount :</b> ___________ &nbsp; &nbsp; &nbsp; <b>Date :</b> ________________<br /><b>Notes :</b> ______________________________________",
},
//fr.js
@ -11284,7 +11294,7 @@ ninja.wallets.paperwallet = {
"<div id='qrcode_private" + i + "' class='qrcode_private'></div>" +
"<div class='btcaddress' id='btcaddress" + i + "'></div>" +
"<div class='" + keyelement + "' id='" + keyelement + i + "'></div>" +
"<div class='paperWalletText'><img class='backLogo' src='" + coinImgUrl + "' alt='currency_logo' /><ul><li>To deposit funds to this paper wallet, send cryptocurrency to its public address, anytime.</li><li>Verify your balance by searching for the public address using a blockain explorer such as blockchain.info.</li><li><b>DO NOT REVEAL THE PRIVATE KEY</b> until you are ready to import the balance on this wallet to a cryptocurrency client, exchange or online wallet.</li></ul><b>Amount :</b> ___________ &nbsp; &nbsp; &nbsp; <b>Date :</b> ________________<br /><b>Notes :</b> ______________________________________</div>" +
"<div class='paperWalletText'><img class='backLogo' src='" + coinImgUrl + "' alt='currency_logo' />" + ninja.translator.get("paperwalletback") + "</div>" +
"</div>";
return walletHtml;
},
@ -12456,7 +12466,7 @@ if (ninja.getQueryString()["i18nextract"]) {
div.setAttribute("style", "text-align: center");
var elem = document.createElement("textarea");
elem.setAttribute("rows", "30");
elem.setAttribute("style", "width: 100%");
elem.setAttribute("style", "width: 99%");
elem.setAttribute("wrap", "off");
a=document.getElementsByClassName("i18n");
@ -12464,21 +12474,21 @@ if (ninja.getQueryString()["i18nextract"]) {
var i18n = "\"" + culture + "\": {\n";
for(x=0; x<a.length; x++) {
i18n += "\t";
i18n += "\"" + a[x].id + "\": \"";
i18n += "'" + a[x].id + "': '";
if(ninja.translator.translations[culture] && ninja.translator.translations[culture][a[x].id])
i18n += ninja.translator.translations[culture][a[x].id];
else
i18n += "(ENGLISH)" + a[x].innerHTML.replace(/^\s\s*/, '').replace(/\s\s*$/, '');
i18n += "\",\n";
i18n += "',\n";
}
for(x=0; x<ninja.translator.staticID.length; x++) {
i18n += "\t";
i18n += "\"" + ninja.translator.staticID[x] + "\": \"";
i18n += "'" + ninja.translator.staticID[x] + "': '";
if(ninja.translator.translations[culture] && ninja.translator.translations[culture][ninja.translator.staticID[x]])
i18n += ninja.translator.translations[culture][ninja.translator.staticID[x]];
else
i18n += "(ENGLISH)" + ninja.translator.translations["en"][ninja.translator.staticID[x]].replace(/^\s\s*/, '').replace(/\s\s*$/, '');
i18n += "\",\n";
i18n += "',\n";
}
i18n += "},"

View file

@ -14,5 +14,10 @@
"vanityalertinvalidinputpublickeysmatch": "Invalid input. The Public Key of both entries match. You must input two different keys.",
"vanityalertinvalidinputcannotmultiple": "Invalid input. Cannot multiply two public keys. Select 'Add' to add two public keys to get a bitcoin address.",
"vanityprivatekeyonlyavailable": "Only available when combining two private keys",
"vanityalertinvalidinputprivatekeysmatch": "Invalid input. The Private Key of both entries match. You must input two different keys."
"vanityalertinvalidinputprivatekeysmatch": "Invalid input. The Private Key of both entries match. You must input two different keys.",
"securitychecklistrandomOK": "Your browser is capable of generating cryptographically random keys using window.crypto.getRandomValues",
"securitychecklistrandomNOK": "Your browser does NOT support window.crypto.getRandomValues(), which is important for generating the most secure random numbers possible. Please use a more modern browser.",
"securitychecklistofflineNOK": "You appear to be running this generator off of a live website, which is not recommended for creating valuable wallets. Instead, use the download link at the bottom of this page to download the ZIP file from GitHub and run this generator offline as a \'local\' HTML file.",
"securitychecklistofflineOK": "You are running this generator from your own download.",
"paperwalletback": "<ul><li>To deposit funds to this paper wallet, send cryptocurrency to its public address, anytime.</li><li>Verify your balance by searching for the public address using a blockain explorer such as blockchain.info.</li><li><b>DO NOT REVEAL THE PRIVATE KEY</b> until you are ready to import the balance on this wallet to a cryptocurrency client, exchange or online wallet.</li></ul><b>Amount :</b> ___________ &nbsp; &nbsp; &nbsp; <b>Date :</b> ________________<br /><b>Notes :</b> ______________________________________",
},

View file

@ -135,29 +135,29 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
</div>
<div id="currencyddl" class="hide">
Choose currency :
<select id="currency" onchange="janin.currency.useCurrency(this.selectedIndex);"></select>
<span id="choosecurrency" class="i18n">Choose currency</span> :
<select id="currency" onchange="janin.currency.useCurrency(this.selectedIndex);"></select>
</div>
<div id="seedpoolarea"><textarea rows="16" cols="62" id="seedpool"></textarea></div>
<div class="menu" id="menu">
<div class="tab selected" id="singlewallet" onclick="ninja.tabSwitch(this);">Single Wallet</div>
<div class="tab" id="paperwallet" onclick="ninja.tabSwitch(this);">Paper Wallet</div>
<div class="tab" id="bulkwallet" onclick="ninja.tabSwitch(this);">Bulk Wallet</div>
<div class="tab" id="brainwallet" onclick="ninja.tabSwitch(this);">Brain Wallet</div>
<div class="tab" id="vanitywallet" onclick="ninja.tabSwitch(this);">Vanity Wallet</div>
<div class="tab" id="detailwallet" onclick="ninja.tabSwitch(this);">Wallet Details</div>
<div class="tab" id="donate" onclick="ninja.tabSwitch(this);">Support</div>
<div class="tab i18n selected" id="singlewallet" onclick="ninja.tabSwitch(this);">Single Wallet</div>
<div class="tab i18n" id="paperwallet" onclick="ninja.tabSwitch(this);">Paper Wallet</div>
<div class="tab i18n" id="bulkwallet" onclick="ninja.tabSwitch(this);">Bulk Wallet</div>
<div class="tab i18n" id="brainwallet" onclick="ninja.tabSwitch(this);">Brain Wallet</div>
<div class="tab i18n" id="vanitywallet" onclick="ninja.tabSwitch(this);">Vanity Wallet</div>
<div class="tab i18n" id="detailwallet" onclick="ninja.tabSwitch(this);">Wallet Details</div>
<div class="tab i18n" id="donate" onclick="ninja.tabSwitch(this);">Support</div>
</div>
<div id="wallets">
<div id="singlearea" class="walletarea">
<div id="initBanner">
<span id="generatelabelbitcoinaddress">Generating new Address...</span><br />
<span id="generatelabelmovemouse">MOVE your mouse around to add some extra randomness... </span><span id="mousemovelimit"></span><br />
<span id="generatelabelkeypress">OR type some random characters into this textbox</span> <input type="text" id="generatekeyinput" onkeypress="ninja.seeder.seedKeyPress(event);" /><br />
<span id="generatelabelbitcoinaddress" class="i18n">Generating new Address...</span><br />
<span id="generatelabelmovemouse" class="i18n">MOVE your mouse around to add some extra randomness... </span><span id="mousemovelimit"></span><br />
<span id="generatelabelkeypress" class="i18n">OR type some random characters into this textbox</span> <input type="text" id="generatekeyinput" onkeypress="ninja.seeder.seedKeyPress(event);" /><br />
<div id="seedpooldisplay"></div>
<div id="rightArea">
@ -167,7 +167,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
<div id="seedSkipper">
<a href="#" class="nicerButton 100pxwidth" onClick="ninja.seeder.seedCount = ninja.seeder.seedLimit; ninja.seeder.seed();">Skip &raquo;</a>
<p class="skipMessage">You may skip this step if you do not plan to use the random key generator.</p>
<p id="skipMessage" class="i18n">You may skip this step if you do not plan to use the random key generator.</p>
</div>
</div>
</div>
@ -181,58 +181,58 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
<div id="keyarea" class="keyarea">
<div class="public">
<div class="pubaddress">
<span class="label" id="singlelabelbitcoinaddress">Public Address</span>
<span class="label" id="singlelabelbitcoinaddress" class="i18n">Public Address</span>
</div>
<div id="qrcode_public" class="qrcode_public"></div>
<div class="pubaddress">
<span class="output" id="btcaddress"></span>
</div>
<div id="singleshare">SHARE</div>
<div id="singleshare" class="i18n">SHARE</div>
</div>
<div class="private">
<div class="privwif">
<span class="label" id="singlelabelprivatekey">Private Key (Wallet Import Format)</span>
<span class="label i18n" id="singlelabelprivatekey">Private Key (Wallet Import Format)</span>
</div>
<div id="qrcode_private" class="qrcode_private"></div>
<div class="privwif">
<span class="output" id="btcprivwif"></span>
</div>
<div id="singlesecret">SECRET</div>
<div id="singlesecret" class="i18n">SECRET</div>
</div>
</div>
<div id="singlesafety">
<div class="firstHalfSingleSafety">
<h3>Step 0. Follow the security checklist recommendation</h3>
<p>
<h3 id="securitystep0title" class="i18n">Step 0. Follow the security checklist recommendation</h3>
<p id="securitystep0" class="i18n">
First step is to <strong>download</strong> this website from <a href="https://github.com/MichaelMure/PaperWallet/archive/master.zip">Github</a> and open the index.html file directly from your computer. It's just too easy to sneak some evil code in the 6000+ lines of javascript to leak your private key, and you don't want to see your fund stolen. Code version control make it much easier to cross-check what actually run. For extra security, <strong>unplug your Internet access</strong> while generating your wallet.
</p>
<h3>Step 1. Generate new address</h3>
<p>
<h3 id="securitystep1title" class="i18n">Step 1. Generate new address</h3>
<p id="securitystep1" class="i18n">
Choose your currency and click on the "Generate new address" button.
</p>
<h3>Step 2. Print the Paper Wallet</h3>
<p>
<h3 id="securitystep2title" class="i18n">Step 2. Print the Paper Wallet</h3>
<p id="securitystep2" class="i18n">
Click the Paper Wallet tab and print the page on high quality setting. <strong>Never save the page as a PDF file to print it later since a file is more likely to be hacked than a piece of paper.</strong>
</p>
<h3>Step 3. Fold the Paper Wallet</h3>
<p>
<h3 id="securitystep3title" class="i18n">Step 3. Fold the Paper Wallet</h3>
<p id="securitystep3" class="i18n">
Fold your new Paper wallet following the lines.
<img src="images/foldinginstructions.png" alt="Fold in half lengthwise, and then in three widthwise." /><br />
You can insert one side inside the other to lock the wallet.
</p>
<h3>Step 4. Share your public key</h3>
<p>
<h3 id="securitystep4title" class="i18n">Step 4. Share your public key</h3>
<p id="securitystep4" class="i18n">
Use your public key to receive money from other crypto-currency users. You can share your public keys as much as you want.
</p>
<h3>Step 5. Keep your private key secret</h3>
<p>
<h3 id="securitystep5title" class="i18n">Step 5. Keep your private key secret</h3>
<p id="securitystep5" class="i18n">
The private key is literally the keys to your coins, if someone was to obtain it, they could withdraw the funds currently in the wallet, and any funds that might be deposited in that wallet.
</p>
<p>
<strong>Please test spending a small amount before receiving any large payments.</strong><br /><br />
<strong id="securitystep6" class="i18n">Please test spending a small amount before receiving any large payments.</strong><br /><br />
</p>
@ -241,21 +241,21 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
<img class="frontPageImage" src="images/overview.png" alt="Overview image of 4 paper wallet" />
<div class="securityChecklist">
<b>Security Checklist :</b>
<b id="securitychecktitle" class="i18n">Security Checklist :</b>
<ul>
<li id="envSecurityCheck"></li>
<li id="browserSecurityCheck"></li>
<li>
<li id="securitychecklivecd" class="i18n">
Are you using a secure operating system guaranteed to be free of spyware and viruses, for example, an Ubuntu LiveCD?
</li>
</ul>
</div>
<div class="supportedCurrenciesChecklist">
<b>Supported currencies :</b>
<b id="supportedcurrencylbl" class="i18n">Supported currencies :</b>
<div id="supportedcurrencies"></div>
</div>
</div>
@ -344,7 +344,7 @@ Walletgenerator.net use the same security measure as its original. All-in-one ht
</div>
</div>
<div class="body">
<span class="label" id="bulklabelcsv">Comma Separated Values:</span> <span class="format" id="bulklabelformat">Index,Address,Private Key (WIF)</span>
<span class="label i18n" id="bulklabelcsv">Comma Separated Values:</span> <span class="format" id="bulklabelformat">Index,Address,Private Key (WIF)</span>
<textarea rows="20" cols="88" id="bulktextarea"></textarea>
</div>
</div>
@ -352,16 +352,16 @@ Walletgenerator.net use the same security measure as its original. All-in-one ht
<div id="brainarea" class="walletarea">
<div id="braincommands" class="commands">
<div class="row">
<span id="brainlabelenterpassphrase" class="label"><label for="brainpassphrase">Enter Passphrase: </label></span>
<span id="brainlabelenterpassphrase" class="label"><label id="brainlabelenterpassphraselbl" class="i18n" for="brainpassphrase">Enter Passphrase: </label></span>
<input tabindex="1" type="password" id="brainpassphrase" value="" onfocus="this.select();" onkeypress="if (event.keyCode == 13) ninja.wallets.brainwallet.view();" />
<span><label id="brainlabelshow" for="brainpassphraseshow">Show?</label> <input type="checkbox" id="brainpassphraseshow" onchange="ninja.wallets.brainwallet.showToggle(this);" /></span>
<span class="print"><input type="button" name="print" id="brainprint" value="Print" onclick="window.print();" /></span>
</div>
<div class="row extra">
<span class="label" id="brainlabelconfirm"><label for="brainpassphraseconfirm">Confirm Passphrase: </label></span>
<span class="label" id="brainlabelconfirm"><label id="brainlabelconfirmlbl" class="i18n" for="brainpassphraseconfirm">Confirm Passphrase: </label></span>
<input tabindex="2" type="password" id="brainpassphraseconfirm" value="" onfocus="this.select();" onkeypress="if (event.keyCode == 13) ninja.wallets.brainwallet.view();" />
<span><input tabindex="3" type="button" id="brainview" value="View" onclick="ninja.wallets.brainwallet.view();" /></span>
<span id="brainalgorithm" class="notes right">Algorithm: SHA256(passphrase)</span>
<span id="brainalgorithm" class="notes right i18n">Algorithm: SHA256(passphrase)</span>
</div>
<div class="row extra"><span id="brainwarning"></span></div>
<div class="row extra errorMsg"><span id="brainerror"></span></div>
@ -370,14 +370,14 @@ Walletgenerator.net use the same security measure as its original. All-in-one ht
<div class="public">
<div id="brainqrcodepublic" class="qrcode_public"></div>
<div class="pubaddress">
<span class="label" id="brainlabelbitcoinaddress">Public Address:</span>
<span class="label i18n" id="brainlabelbitcoinaddress">Public Address:</span>
<span class="output" id="brainbtcaddress"></span>
</div>
</div>
<div class="private">
<div id="brainqrcodeprivate" class="qrcode_private"></div>
<div class="privwif">
<span class="label" id="brainlabelprivatekey">Private Key (Wallet Import Format):</span>
<span class="label i18n" id="brainlabelprivatekey">Private Key (Wallet Import Format):</span>
<span class="output" id="brainbtcprivwif"></span>
</div>
</div>
@ -386,60 +386,60 @@ Walletgenerator.net use the same security measure as its original. All-in-one ht
<div id="vanityarea" class="walletarea">
<div id="vanitystep1label" class="commands expandable" onclick="ninja.wallets.vanitywallet.openCloseStep(1);">
<span><label id="vanitylabelstep1">Step 1 - Generate your "Step1 Key Pair"</label> <input type="button" id="vanitynewkeypair"
<span><label id="vanitylabelstep1" class="i18n">Step 1 - Generate your "Step1 Key Pair"</label> <input type="button" id="vanitynewkeypair"
value="Generate" onclick="ninja.wallets.vanitywallet.generateKeyPair();" /></span>
<div id="vanitystep1icon" class="more"></div>
</div>
<div id="vanitystep1area">
<div>
<span class="label" id="vanitylabelstep1publickey">Step 1 Public Key:</span>
<span class="label i18n" id="vanitylabelstep1publickey">Step 1 Public Key:</span>
<div class="output pubkeyhex" id="vanitypubkey"></div>
<br /><div class="notes" id="vanitylabelstep1pubnotes">Copy and paste the above into the Your-Part-Public-Key field in the Vanity Pool Website.</div>
<br /><div class="notes i18n" id="vanitylabelstep1pubnotes">Copy and paste the above into the Your-Part-Public-Key field in the Vanity Pool Website.</div>
</div>
<div>
<span class="label" id="vanitylabelstep1privatekey">Step 1 Private Key:</span>
<span class="label i18n" id="vanitylabelstep1privatekey">Step 1 Private Key:</span>
<span class="output" id="vanityprivatekey"></span>
<br /><div class="notes" id="vanitylabelstep1privnotes">Copy and paste the above Private Key field into a text file. Ideally save to an encrypted drive. You will need this to retrieve the Private Key once the Pool has found your prefix.</div>
<br /><div class="notes i18n" id="vanitylabelstep1privnotes">Copy and paste the above Private Key field into a text file. Ideally save to an encrypted drive. You will need this to retrieve the Private Key once the Pool has found your prefix.</div>
</div>
</div>
<div id="vanitystep2label" class="expandable" onclick="ninja.wallets.vanitywallet.openCloseStep(2);">
<span id="vanitylabelstep2calculateyourvanitywallet">Step 2 - Calculate your Vanity Wallet</span>
<span id="vanitylabelstep2calculateyourvanitywallet" class="i18n">Step 2 - Calculate your Vanity Wallet</span>
<div id="vanitystep2icon" class="more"></div>
</div>
<div id="vanitystep2inputs">
<div>
<span id="vanitylabelenteryourpart">Enter Your Part Private Key (generated in Step 1 above and previously saved):</span>
<br /><span class="notes" id="vanitylabelnote1">[NOTE: this input box can accept a public key or private key]</span>
<span id="vanitylabelenteryourpart" class="i18n">Enter Your Part Private Key (generated in Step 1 above and previously saved):</span>
<br /><span class="notes i18n" id="vanitylabelnote1">[NOTE: this input box can accept a public key or private key]</span>
</div>
<div><textarea id="vanityinput1" rows="2" cols="90" onfocus="this.select();"></textarea></div>
<div>
<span id="vanitylabelenteryourpoolpart">Enter Pool Part Private Key (from Vanity Pool):</span>
<br /><span class="notes" id="vanitylabelnote2">[NOTE: this input box can accept a public key or private key]</span>
<span id="vanitylabelenteryourpoolpart" class="i18n">Enter Pool Part Private Key (from Vanity Pool):</span>
<br /><span class="notes i18n" id="vanitylabelnote2">[NOTE: this input box can accept a public key or private key]</span>
</div>
<div><textarea id="vanityinput2" rows="2" cols="90" onfocus="this.select();"></textarea></div>
<div>
<label for="vanityradioadd" id="vanitylabelradioadd">Add</label> <input type="radio" id="vanityradioadd" name="vanityradio" value="add" checked />
<label for="vanityradiomultiply" id="vanitylabelradiomultiply">Multiply</label> <input type="radio" id="vanityradiomultiply" name="vanityradio" value="multiply" />
<label for="vanityradioadd" id="vanitylabelradioadd" class="i18n">Add</label> <input type="radio" id="vanityradioadd" name="vanityradio" value="add" checked />
<label for="vanityradiomultiply" id="vanitylabelradiomultiply" class="i18n">Multiply</label> <input type="radio" id="vanityradiomultiply" name="vanityradio" value="multiply" />
</div>
<div><input type="button" id="vanitycalc" value="Calculate Vanity Wallet" onclick="ninja.wallets.vanitywallet.addKeys();" /></div>
</div>
<div id="vanitystep2area">
<div>
<span class="label" id="vanitylabelbitcoinaddress">Vanity Public Address:</span>
<span class="label i18n" id="vanitylabelbitcoinaddress">Vanity Public Address:</span>
<span class="output" id="vanityaddress"></span>
<br /><div class="notes" id="vanitylabelnotesbitcoinaddress">The above is your new address that should include your required prefix.</div>
<br /><div class="notes i18n" id="vanitylabelnotesbitcoinaddress">The above is your new address that should include your required prefix.</div>
</div>
<div>
<span class="label" id="vanitylabelpublickeyhex">Vanity Public Key (HEX):</span>
<span class="label i18n" id="vanitylabelpublickeyhex">Vanity Public Key (HEX):</span>
<span class="output pubkeyhex" id="vanitypublickeyhex"></span>
<br /><div class="notes" id="vanitylabelnotespublickeyhex">The above is the Public Key in hexadecimal format. </div>
<br /><div class="notes i18n" id="vanitylabelnotespublickeyhex">The above is the Public Key in hexadecimal format.</div>
</div>
<div>
<span class="label" id="vanitylabelprivatekey">Vanity Private Key (WIF):</span>
<span class="label i18n" id="vanitylabelprivatekey">Vanity Private Key (WIF):</span>
<span class="output" id="vanityprivatekeywif"></span>
<br /><div class="notes" id="vanitylabelnotesprivatekey">The above is the Private Key to load into your wallet. </div>
<br /><div class="notes i18n" id="vanitylabelnotesprivatekey">The above is the Private Key to load into your wallet.</div>
</div>
</div>
</div>
@ -449,7 +449,7 @@ Walletgenerator.net use the same security measure as its original. All-in-one ht
<div class="row extra qrzone">
<span class="qrinput">
<label id="detaillabelenterprivatekey" for="detailprivkey">Enter Private Key</label>
<label id="detaillabelenterprivatekey" for="detailprivkey" class="i18n">Enter Private Key</label>
<span class="qrcodeinputwrapper">
<input type="text" id="detailprivkey" value="" placeholder="Enter a private key, or click the QR icon to scan" autocomplete="off" onFocus="this.select();" onKeyPress="if (event.keyCode == 13) ninja.wallets.detailwallet.viewDetails();" />
@ -466,9 +466,9 @@ Walletgenerator.net use the same security measure as its original. All-in-one ht
<div id="paperqrscanner">
<div class="background"></div>
<div id="mainbody" class="dialog instructionsarea">
<h2>Scan QR code using your camera</h2>
<div id="paperqrnotsupported" class="hide redColor">Sorry, but your web browser does not support the HTML5 camera controls. Try using a recent version of Firefox (recommended), Chrome or Opera.</div>
<div id="paperqrpermissiondenied" class="hide redColor">
<h2 id="qrcaminstructiontitle" class="i18n">Scan QR code using your camera</h2>
<div id="paperqrnotsupported" class="hide redColor i18n">Sorry, but your web browser does not support the HTML5 camera controls. Try using a recent version of Firefox (recommended), Chrome or Opera.</div>
<div id="paperqrpermissiondenied" class="hide redColor i18n">
<p>Permission denied. Your browser should display a message requesting access to your camera. Please click the "Allow" button to enable the camera.</p>
</div>
<div id="paperqrerror" class="redColor"></div>
@ -477,84 +477,84 @@ Walletgenerator.net use the same security measure as its original. All-in-one ht
</div>
</div>
<div id="detailbip38commands">
<span><label id="detaillabelpassphrase">Enter BIP38 Passphrase</label> <input type="text" id="detailprivkeypassphrase" value="" onfocus="this.select();" onkeypress="if (event.keyCode == 13) ninja.wallets.detailwallet.viewDetails();" /></span>
<span><label id="detaillabelpassphrase" class="i18n">Enter BIP38 Passphrase</label> <input type="text" id="detailprivkeypassphrase" value="" onfocus="this.select();" onkeypress="if (event.keyCode == 13) ninja.wallets.detailwallet.viewDetails();" /></span>
<span><input type="button" id="detaildecrypt" value="Decrypt BIP38" onclick="ninja.wallets.detailwallet.viewDetails();" /></span>
</div>
</div>
<div id="detailkeyarea">
<div class="notes">
<span id="detaillabelnote1">Your Private Key is a unique secret number that only you know. It can be encoded in a number of different formats. Below we show the Public Address and Public Key that corresponds to your Private Key as well as your Private Key in the most popular encoding formats (WIF, WIFC, HEX, B64).</span>
<span id="detaillabelnote1" class="i18n">Your Private Key is a unique secret number that only you know. It can be encoded in a number of different formats. Below we show the Public Address and Public Key that corresponds to your Private Key as well as your Private Key in the most popular encoding formats (WIF, WIFC, HEX, B64).</span>
<br /><br />
</div>
<div class="pubqr">
<div class="item">
<span class="label" id="detaillabelbitcoinaddress">Public Address</span>
<span class="label i18n" id="detaillabelbitcoinaddress">Public Address</span>
<div id="detailqrcodepublic" class="qrcode_public"></div>
<span class="output" id="detailaddress"></span>
</div>
<div class="item right">
<span class="label" id="detaillabelbitcoinaddresscomp">Public Address Compressed</span>
<span class="label i18n" id="detaillabelbitcoinaddresscomp">Public Address Compressed</span>
<div id="detailqrcodepubliccomp" class="qrcode_public"></div>
<span class="output" id="detailaddresscomp"></span>
</div>
</div>
<br /><br />
<div class="item clear">
<span class="label" id="detaillabelpublickey">Public Key (130 characters [0-9A-F]):</span>
<span class="label i18n" id="detaillabelpublickey">Public Key (130 characters [0-9A-F]):</span>
<span class="output pubkeyhex" id="detailpubkey"></span>
</div>
<div class="item">
<span class="label" id="detaillabelpublickeycomp">Public Key (compressed, 66 characters [0-9A-F]):</span>
<span class="label i18n" id="detaillabelpublickeycomp">Public Key (compressed, 66 characters [0-9A-F]):</span>
<span class="output" id="detailpubkeycomp"></span>
</div>
<hr />
<div class="privqr">
<div class="item">
<span class="label"><span id="detaillabelprivwif">Private Key WIF<br />51 characters base58, starts with a</span> <span id="detailwifprefix">'5'</span></span>
<span class="label"><span id="detaillabelprivwif" class="i18n">Private Key WIF<br />51 characters base58, starts with a</span> <span id="detailwifprefix">'5'</span></span>
<div id="detailqrcodeprivate" class="qrcode_private"></div>
<span class="output" id="detailprivwif"></span>
</div>
<div class="item right">
<span class="label"><span id="detaillabelprivwifcomp">Private Key WIF Compressed<br />52 characters base58, starts with a</span> <span id="detailcompwifprefix">'K' or 'L'</span></span>
<span class="label"><span id="detaillabelprivwifcomp" class="i18n">Private Key WIF Compressed<br />52 characters base58, starts with a</span> <span id="detailcompwifprefix">'K' or 'L'</span></span>
<div id="detailqrcodeprivatecomp" class="qrcode_private"></div>
<span class="output" id="detailprivwifcomp"></span>
</div>
</div>
<br /><br />
<div class="item clear">
<span class="label" id="detaillabelprivhex">Private Key Hexadecimal Format (64 characters [0-9A-F]):</span>
<span class="label i18n" id="detaillabelprivhex">Private Key Hexadecimal Format (64 characters [0-9A-F]):</span>
<span class="output" id="detailprivhex"></span>
</div>
<div class="item">
<span class="label" id="detaillabelprivb64">Private Key Base64 (44 characters):</span>
<span class="label i18n" id="detaillabelprivb64">Private Key Base64 (44 characters):</span>
<span class="output" id="detailprivb64"></span>
</div>
<div class="item displayNone" id="detailmini">
<span class="label" id="detaillabelprivmini">Private Key Mini Format (22, 26 or 30 characters, starts with an 'S'):</span>
<span class="label i18n" id="detaillabelprivmini">Private Key Mini Format (22, 26 or 30 characters, starts with an 'S'):</span>
<span class="output" id="detailprivmini"></span>
</div>
<div class="item displayNone" id="detailb6">
<span class="label" id="detaillabelprivb6">Private Key Base6 Format (99 characters [0-5]):</span>
<span class="label i18n" id="detaillabelprivb6">Private Key Base6 Format (99 characters [0-5]):</span>
<span class="output" id="detailprivb6"></span>
</div>
<div class="item displayNone" id="detailbip38">
<span class="label" id="detaillabelprivbip38">Private Key BIP38 Format (58 characters base58, starts with '6P'):</span>
<span class="label i18n" id="detaillabelprivbip38">Private Key BIP38 Format (58 characters base58, starts with '6P'):</span>
<span class="output" id="detailprivbip38"></span>
</div>
</div>
<div class="faqs">
<div id="detailfaq1" class="faq">
<div id="detailq1" class="question" onclick="ninja.wallets.detailwallet.openCloseFaq(1);">
<span id="detaillabelq1">How do I make a wallet using dice? What is B6?</span>
<span id="detaillabelq1" class="i18n">How do I make a wallet using dice? What is B6?</span>
<div id="detaile1" class="more"></div>
</div>
<div id="detaila1" class="answer">An important part of creating a crypto-currency wallet is ensuring the random numbers used to create the wallet are truly random. Physical randomness is better than computer generated pseudo-randomness. The easiest way to generate physical randomness is with dice. To create a crypto-currency private key you only need one six sided die which you roll 99 times. Stopping each time to record the value of the die. When recording the values follow these rules: 1=1, 2=2, 3=3, 4=4, 5=5, 6=0. By doing this you are recording the big random number, your private key, in B6 or base 6 format. You can then enter the 99 character base 6 private key into the text field above and click View Details. You will then see the public address associated with your private key. You should also make note of your private key in WIF format since it is more widely used.</div>
<div id="detaila1" class="answer i18n">An important part of creating a crypto-currency wallet is ensuring the random numbers used to create the wallet are truly random. Physical randomness is better than computer generated pseudo-randomness. The easiest way to generate physical randomness is with dice. To create a crypto-currency private key you only need one six sided die which you roll 99 times. Stopping each time to record the value of the die. When recording the values follow these rules: 1=1, 2=2, 3=3, 4=4, 5=5, 6=0. By doing this you are recording the big random number, your private key, in B6 or base 6 format. You can then enter the 99 character base 6 private key into the text field above and click View Details. You will then see the public address associated with your private key. You should also make note of your private key in WIF format since it is more widely used.</div>
</div>
</div>
</div>
<div id="donatearea" class="walletarea">
<div>To support the development of this wallet generator, you can donate to the following address:</div>
<div id="donatetextfooter" class="i18n">To support the development of this wallet generator, you can donate to the following address:</div>
<div id="donatelist"></div>
<div id="donateqrcode"></div>
<div id="donateinfo"></div>
@ -625,7 +625,7 @@ Walletgenerator.net use the same security measure as its original. All-in-one ht
<div id="footer" class="footer">
<div>
<span class="item"><a href="#" onclick="ninja.tabSwitch(document.getElementById('donate'));">Support WalletGenerator.net</a></span>
<span class="item"><a href="https://github.com/MichaelMure/WalletGenerator.net" target="_blank" id="footerlabelgithub">Download (GitHub Repository)</a></span>
<span class="item"><a href="https://github.com/MichaelMure/WalletGenerator.net" target="_blank" id="footerlabelgithub" class="i18n">Download (GitHub Repository)</a></span>
<span class="item"><a href="https://twitter.com/WalletGenerator">@WalletGenerator</a></span>
</div>
<div class="copyright">

View file

@ -38,7 +38,7 @@ body { font-family: Arial; background-image: url('images/diamonds.png'); height:
.seedpoint { width: 6px; height: 6px; display: block; border-radius: 3px; background-color: #80CF80; position: absolute; z-index: 10; }
#seedSkipper { font-size: 11px; text-align: center; line-height: 14px;}
.skipMessage { margin-top: 8px; }
#skipMessage { margin-top: 8px; }
#generate #mousemovelimit { font-size: 16px; color: #FFF; }
#rightArea { position: absolute; right: 66px; top: 62px; width: 170px; }

View file

@ -206,10 +206,10 @@ ninja.envSecurityCheck = function() {
switch(window.location.protocol) {
case 'http:':
case 'https:':
innerHTML = '<span style="color: #990000;">You appear to be running this generator off of a live website, which is not recommended for creating valuable wallets. Instead, use the download link at the bottom of this page to download the ZIP file from GitHub and run this generator offline as a \'local\' HTML file.</span>';
innerHTML = '<span style="color: #990000;">' + ninja.translator.get("securitychecklistofflineNOK") + '</span>';
break;
case 'file:':
innerHTML = '<span style="color: #009900;">You are running this generator from your own download.</span>';
innerHTML = '<span style="color: #009900;">' + ninja.translator.get("securitychecklistofflineOK") + '</span>';
break;
default:
}
@ -219,9 +219,9 @@ ninja.envSecurityCheck = function() {
ninja.browserSecurityCheck = function() {
var innerHTML = "";
if (window.crypto && window.crypto.getRandomValues) {
innerHTML = '<span style="color: #009900;">Your browser is capable of generating cryptographically random keys using window.crypto.getRandomValues</span>';
innerHTML = '<span style="color: #009900;">' + ninja.translator.get("securitychecklistrandomOK") + '</span>';
} else {
innerHTML = '<span style="color: #990000;">Your browser does NOT support window.crypto.getRandomValues(), which is important for generating the most secure random numbers possible. Please use a more modern browser.</span>';
innerHTML = '<span style="color: #990000;">' + ninja.translator.get("securitychecklistrandomNOK") + '</span>';
}
document.getElementById('browserSecurityCheck').innerHTML = innerHTML;
}

View file

@ -66,7 +66,7 @@ if (ninja.getQueryString()["i18nextract"]) {
div.setAttribute("style", "text-align: center");
var elem = document.createElement("textarea");
elem.setAttribute("rows", "30");
elem.setAttribute("style", "width: 100%");
elem.setAttribute("style", "width: 99%");
elem.setAttribute("wrap", "off");
a=document.getElementsByClassName("i18n");
@ -74,21 +74,21 @@ if (ninja.getQueryString()["i18nextract"]) {
var i18n = "\"" + culture + "\": {\n";
for(x=0; x<a.length; x++) {
i18n += "\t";
i18n += "\"" + a[x].id + "\": \"";
i18n += "'" + a[x].id + "': '";
if(ninja.translator.translations[culture] && ninja.translator.translations[culture][a[x].id])
i18n += ninja.translator.translations[culture][a[x].id];
else
i18n += "(ENGLISH)" + a[x].innerHTML.replace(/^\s\s*/, '').replace(/\s\s*$/, '');
i18n += "\",\n";
i18n += "',\n";
}
for(x=0; x<ninja.translator.staticID.length; x++) {
i18n += "\t";
i18n += "\"" + ninja.translator.staticID[x] + "\": \"";
i18n += "'" + ninja.translator.staticID[x] + "': '";
if(ninja.translator.translations[culture] && ninja.translator.translations[culture][ninja.translator.staticID[x]])
i18n += ninja.translator.translations[culture][ninja.translator.staticID[x]];
else
i18n += "(ENGLISH)" + ninja.translator.translations["en"][ninja.translator.staticID[x]].replace(/^\s\s*/, '').replace(/\s\s*$/, '');
i18n += "\",\n";
i18n += "',\n";
}
i18n += "},"

View file

@ -143,7 +143,7 @@ ninja.wallets.paperwallet = {
"<div id='qrcode_private" + i + "' class='qrcode_private'></div>" +
"<div class='btcaddress' id='btcaddress" + i + "'></div>" +
"<div class='" + keyelement + "' id='" + keyelement + i + "'></div>" +
"<div class='paperWalletText'><img class='backLogo' src='" + coinImgUrl + "' alt='currency_logo' /><ul><li>To deposit funds to this paper wallet, send cryptocurrency to its public address, anytime.</li><li>Verify your balance by searching for the public address using a blockain explorer such as blockchain.info.</li><li><b>DO NOT REVEAL THE PRIVATE KEY</b> until you are ready to import the balance on this wallet to a cryptocurrency client, exchange or online wallet.</li></ul><b>Amount :</b> ___________ &nbsp; &nbsp; &nbsp; <b>Date :</b> ________________<br /><b>Notes :</b> ______________________________________</div>" +
"<div class='paperWalletText'><img class='backLogo' src='" + coinImgUrl + "' alt='currency_logo' />" + ninja.translator.get("paperwalletback") + "</div>" +
"</div>";
return walletHtml;
},

View file

@ -58,6 +58,11 @@ ninja.translator = {
"vanityalertinvalidinputpublickeysmatch",
"vanityprivatekeyonlyavailable",
"vanityalertinvalidinputcannotmultiple",
"securitychecklistrandomOK",
"securitychecklistrandomNOK",
"securitychecklistofflineNOK",
"securitychecklistofflineOK",
"paperwalletback",
],
translations: {